import { ZTooltip_Props } from '@zurich/dev-utils/code/Tooltip'; export type Tooltip_StyleProps = { /** ## Tooltip * * The `z-tooltip` attribute will display the value once the html tag is hovered. * * * --- * ### Attributes: * * - `tooltip-side`: _( string )_ defines the side of the tooltip. Possible values are: `top`, `top-right`, `top-left`, * `bottom`, `bottom-right`, `bottom-left` * - `tooltip-size`: _( string )_ defines the size of the tooltip. Possible values are: `xs`, `s`, `m`, `l` * * --- * ### Examples: * ```html * Hover me * ``` * ![example_1](./atoms/Tooltip/Tooltip.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/tooltip) */ 'z-tooltip'?: ZTooltip_Props['config'] | '' | true; /** */ 'tooltip-text'?: string; };