# tippyjs-react **Repository Path**: mirrors_FezVrasta/tippyjs-react ## Basic Information - **Project Name**: tippyjs-react - **Description**: React component for Tippy.js (official) - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
Logo

Tippy.js for React

[Tippy.js](https://github.com/atomiks/tippyjs/) is the complete tooltip, popover, dropdown, and menu solution for the web, powered by Popper.js. It is an abstraction over Popper that provides the logic and optionally the styling involved in all types of elements that pop out from the flow of the document and get overlaid on top of the UI, positioned next to a reference element. This is a lightweight wrapper that lets you use it declaratively in React, providing full integration including headless rendering abilities. Tippy has virtually no restrictions over Popper, and gives you limitless control while providing useful behavior and defaults. ## 🚀 Installation ```bash # npm npm i @tippyjs/react # Yarn yarn add @tippyjs/react ``` CDN: https://unpkg.com/@tippyjs/react Requires React 16.8+ ## 🖲 Usage There are two ways to use this component: - **Default**: With the built-in DOM rendering and optionally the default CSS. This is complete "out of the box" behavior and requires no setup. If you want something that just works, this is for you. - **Headless**: With React's DOM rendering for improved usage with CSS-in-JS and spring libraries. If you want greater control over your poppers to integrate fully with design systems, this is for you. You can use both of these in conjunction if you'd like though — if so, use the default import and set `animation={false}` as a default prop instead of using the `/headless` import. ### Default Tippy Import the `Tippy` component and (optionally) the core CSS. Wrap the `` component around the element, supplying the tooltip's content as the `content` prop. It can take a string or a tree of React elements. ```jsx import React from 'react'; import Tippy from '@tippyjs/react'; import 'tippy.js/dist/tippy.css'; // optional const StringContent = () => ( ); const JSXContent = () => ( Tooltip}> ); ``` Default Tippy is very quick to use and setup and "just works" out of the box. ### Headless Tippy Render your own tippy element from scratch: ```jsx import React from 'react'; import Tippy from '@tippyjs/react/headless'; const HeadlessTippy = () => ( (
My tippy box
)} >
); ``` `attrs` is an object containing `data-placement`, `data-reference-hidden`, and `data-escaped` attributes. This allows you to conditionally style your tippy if necessary. #### Headless animation - [`framer-motion`](https://codesandbox.io/s/festive-fire-hcr47) - [`react-spring`](https://codesandbox.io/s/vigilant-northcutt-7w3yr) #### Arrow To make Popper position your custom arrow, set a `data-popper-arrow` attribute on it: ```jsx ( Hello )} > ``` For details on styling the arrow from scratch, [take a look at the Popper tutorial](https://popper.js.org/docs/v2/tutorial/#arrow). **Note: your arrow must be an `HTMLElement` (not an `SVGElement`). To use an SVG arrow, wrap it in a `
` tag with the `data-popper-arrow` attribute.** You may also pass a ref to the element directly without the attribute using a callback ref: ```jsx function App() { const [arrow, setArrow] = useState(null); return ( ( Content )} popperOptions={{ modifiers: [ { name: 'arrow', options: { element: arrow, // can be a CSS selector too }, }, ], }} > ); } ``` #### Note on Headless Tippy in React The root popper node is abstracted away and gets styled/mutated by Tippy internally, so Headless Tippy in React is partially headless. This ensures it works correctly with minimal effort on your behalf to render. When rendering an element with the `render` prop, you're rendering the inner box element that the root popper node wraps, which is what gets styled and animated. For advanced cases, you can access the parent popper node as `instance.popper` in the `onCreate` lifecycle hook. [Here's `moveTransition` with Framer Motion](https://codesandbox.io/s/tippyjs-react-framer-motion-j94mj). ### Component children If you want to use a component element as a child, ensure you forward the ref to the DOM node: ```jsx import React, {forwardRef} from 'react'; function ThisWontWork() { return ; } const ThisWillWork = forwardRef((props, ref) => { return ; }); function App() { return ( ); } ``` `styled-components` v4+ does this for you automatically, so it should be seamless when using the `styled` constructor. If you're using a library that doesn't `forwardRef` for you, and doesn't give access to the ref via `innerRef` or similar, you can use a wrapper `` element as a workaround. ```jsx Reference ``` ## 🧬 Props All of the native Tippy.js props can be passed to the component. Visit [All Props](https://atomiks.github.io/tippyjs/v6/all-props/) to view the complete list. ```jsx ``` In addition, there are 3 more props added specifically for the React component. ### `className?: string` > **Note**: This does not apply if using Headless Tippy, as you can set this on > the element yourself. A React alternative to the `theme` prop. The className gets added to the tooltip element's class list as expected, without adding `-theme` as a suffix. ```jsx ``` If you're using `styled-components`, the `className` prop allows you to avoid global styles with the following technique: ```jsx const PurpleTippy = styled(Tippy)` background: purple; /* Styling the arrow for different placements */ &[data-placement^='top'] > .tippy-arrow::before { border-top-color: purple; } `; ``` See [themes](https://atomiks.github.io/tippyjs/v6/themes/) for more information. ### `disabled?: boolean` ```jsx function App() { const [disabled, setDisabled] = useState(false); return ( ); } ``` ### `visible?: boolean` (controlled mode) Use React's state to fully control the tippy instead of relying on the native `trigger` and `hideOnClick` props: ```jsx function App() { const [visible, setVisible] = useState(true); const show = () => setVisible(true); const hide = () => setVisible(false); return ( ); } ``` ### `reference?: React.RefObject | Element` > Available from `v4.1.0` If you can't place your reference element as a child inside ``, you can use this prop instead. It accepts a React `RefObject` (`.current` property) or a plain `Element`. ```jsx function App() { const ref = useRef(); return ( <> ); } ``` [Read more about plugins here](https://atomiks.github.io/tippyjs/v6/plugins/). ## 🌈 Multiple tippies on a single element You can nest the components like so: ```jsx ``` ## Lazy mounting By default, Tippy mounts your `content` or `render` elements into a container element once created, even if the tippy isn't mounted on the DOM. In most cases, this is fine, but in performance-sensitive scenarios or cases where mounting the component should fire effects only when the tippy mounted, you can lazify the component. [View the following gists to optimize your `` if needed.](https://gist.github.com/atomiks/520f4b0c7b537202a23a3059d4eec908) ## 📚 useSingleton A Hook for the [`createSingleton()`](https://atomiks.github.io/tippyjs/v6/addons/#singleton) addon to re-use a single tippy element for many different reference element targets. [View on CodeSandbox](https://codesandbox.io/s/unruffled-pasteur-4yy99?file=/src/App.js) ```jsx import Tippy, {useSingleton} from '@tippyjs/react'; function App() { const [source, target] = useSingleton(); return ( <> {/* This is the tippy that gets used as the singleton */} {/* These become "virtual" */} ); } ``` `useSingleton()` takes an optional props argument: ```js const [source, target] = useSingleton({ disabled: true, overrides: ['placement'], }); ``` ### Headless singleton The `render` prop takes the singleton content as a second parameter: ```jsx import Tippy, {useSingleton} from '@tippyjs/react/headless'; function App() { const [source, target] = useSingleton(); return ( <> (
{content}
)} delay={500} /> ); } ``` ## 📝 License MIT