import { ZBadge_Props } from '@zurich/dev-utils/code/Badge'; export type Badge_StyleProps = { /** ## `Badge` * * The parameter `z-badge` has two components following the pattern: * * `` * * - **Type:** Possibles values are: `dot` , `icon`, `text` * * - **Style:** _(optional)_ defines the style of the badge. The possible value is `outline`. * * - **Size:** _(optional)_ defines the size of the badge. The default value is `m` (`1.5rem`). * The possible values are: `xs` (`.75rem`), `s` (`1rem`), `l` (`3.75rem`). * * --- * ### Attributes: * * - `text`: _( string )_ Value inside the badge. * * --- * ### Examples: * - `default`: * ```html *
* ``` * ![example_1](./atoms/Badge/BadgeDotMedium.png) * * - `disabled`: * ```html *
* ``` * ![example_2](./atoms/Badge/BadgeIconArrowLongLeftLarge.png) * * * @example * * ```tsx * * ``` * ___ * * */ 'z-badge'?: ZBadge_Props['config'] | '' | true; /** */ text?: ZBadge_Props['text']; /** */ fill?: ZBadge_Props['fill']; };