@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
14 lines (13 loc) • 391 B
TypeScript
import { ITooltipControlled } from './types/tooltip';
declare const TooltipControlled: <V extends string | unknown>(props: ITooltipControlled<V>) => JSX.Element;
/**
* @description
* Tooltip component to show a message when interact whit the label
* @example
* <Tooltip
* variant={TooltipVariantType.DEFAULT}
* >
* <Text>Tooltip</Text>
* </Tooltip>
*/
export { TooltipControlled };