MCPcopy Index your code
hub / github.com/Tailframes/react-components / TooltipVariants

Interface TooltipVariants

components/tooltip.tsx:124–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122);
123
124export 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
135export interface TooltipProps extends HTMLAttributes<HTMLDivElement>, TooltipVariants {
136 /** The value of the tooltip. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected