UNPKG

@atlaskit/tooltip

Version:

A tooltip briefly describes an interactive element on mouse hover or keyboard focus.

9 lines (8 loc) 243 B
import { useIdSeed } from '@atlaskit/ds-lib/use-id-seed'; /** * Generates unique ID. */ export default function useUniqueId(prefix, shouldRenderId) { var seed = useIdSeed(); return shouldRenderId ? "".concat(seed(prefix)) : undefined; }