0.1.6 • Published 1 year ago

ez-rc-tooltip v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Installation

npm install ez-rc-tooltip

or

yarn add ez-rc-tooltip

Usage

1. Import the CSS file to set default styling

@import url('/node_modules/ez-rc-tooltip/dist/index.css');

2. Import ez-rc-tooltip after installation

import { Tooltip } from "ez-rc-tooltip";

3. Use Tooltip component to wrap another component that you want show the tooltip

<Tooltip
    content="Click to submit form"
    placement="bottom"
    className="bg-slate-400 text-slate-900"
    arrowClassName="border-slate-400"
>
    <button>Submit</button>
</Tooltip>

Options

  • content: the tooltip content
  • placement: top, top-start, top-end, bottom, bottom-start, bottom-end, left, left-start, left-end, right, right-start, right-end
  • trigger: click, hover
  • className: custom class name for the tooltip
  • arrowClassName: custom class name for the arrow