import { ZTag_Props } from '@zurich/dev-utils/code/Tag'; export type Tag_StyleProps = { /** ## Tag * * The attribute `z-tag` defines the color for the tag. The default value is `azure` or `default`. * The possible values are: `teal`, `moss`, `lilac`, `candy`, `peach`, `mint`, * `lime`, `lemon`, `powder-pink` * * --- * ### Examples: * - `default`: * ```html *
Tag label
* ``` * ![example_1](./atoms/Tag/TagDefault.png) * * - `teal`: * ```html *
Tag label
* ``` * ![example_2](./atoms/Tag/TagTeal.png) * * - `moss`: * ```html *
Tag label
* ``` * ![example_3](./atoms/Tag/TagMoss.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/tag) */ 'z-tag'?: ZTag_Props['fill'] | '' | true; };