| 122 | ); |
| 123 | |
| 124 | export interface TooltipVariants { |
| 125 | /** The variant of the tooltip. */ |
| 126 | variant?: 'primary' | 'secondary'; |
| 127 | /** The size of the tooltip. */ |
| 128 | size?: 'medium' | 'small'; |
| 129 | /** The placement of the tooltip. */ |
| 130 | placement?: 'top' | 'bottom' | 'left' | 'right'; |
| 131 | /** Whether to show the arrow of the tooltip. */ |
| 132 | showArrow?: boolean; |
| 133 | } |
| 134 | |
| 135 | export interface TooltipProps extends HTMLAttributes<HTMLDivElement>, TooltipVariants { |
| 136 | /** The value of the tooltip. */ |
nothing calls this directly
no outgoing calls
no test coverage detected