UNPKG

@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

19 lines (18 loc) 576 B
import React from 'react'; import { ITooltipUnControlled } from './types/tooltip'; declare const TooltipUnControlled: <V>(props: React.PropsWithChildren<ITooltipUnControlled<V>> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => JSX.Element; /** * @description * Tooltip component to show a message when interact whit the label * @example * <Tooltip * align={TooltipAlignType.CENTER} * variant={TooltipVariantType.DEFAULT} * > * <Text>Tooltip</Text> * </Tooltip> */ export { TooltipUnControlled }; export { TooltipUnControlled as Tooltip };