Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
npm install empower-display --save

🔹 Standard

...

Tooltip

...

Configuration

Code Block
import { Tooltip } from 'empower-display';

..............

  const configToolTipTop = {
      delay:600, 
      direction: 'top',
      content:'This is the content for tooltop'
  }
    
..............

  return (
    <> 
      <Tooltip {...configToolTipTop}>
          Sample Tooltip
          <span className="example-emoji " role="img" aria-label="cowboy emoji ">
              🤠
          </span>
      </Tooltip>
    </>
  )

...

🔹 References

Repository Link: https://gitlabbitbucket.comorg/empowerteams/empower-display.git

NPM Package: https://www.npmjs.com/package/empower-display

...