import { ZShape_Props } from '@zurich/dev-utils/code/Shape'; export type Shape_StyleProps = { /** ## Shape * * The parameter `z-shape` has two componenets following the pattern: * * `` * * * --- * ### Attributes: * * - `ShapeValue`: _( ShapeValue )_ value of the shape to display. Possible values are `1`, `2`, `3`,`4`, * `5`, `6` * - `Flip`: _(optional)_ if defined with the value `flip` it will flip horizontally the shape. * * --- * ### Examples: * - `Shape 1`: * ```html *
* ``` * ![example_1](./atoms/Shape/Shape1.png) * * - `Shape 1 Flipped`: * ```html *
* ``` * ![example_2](./atoms/Shape/Shape1Flip.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/shape) */ 'z-shape'?: ZShape_Props['shape']; };