import { ZProfile_Props } from '@zurich/dev-utils/code/Profile'; export type Profile_StyleProps = { /** ## Profile [🔗](./atoms/profile) * * The parameter `z-profile` has two componenets following the pattern: * ` * * - **Size:** defines the size of the profile. Possible values are: `l`, `m`, `s` * - **Color:** _(optional)_ defines the color of the profile background. Possible values are: * `peach`, `azure`, `moss`, `teal` or `lilac` * * @example * ```html *
AZ
* ``` * Prints: * * // TODO * ![example_1](./Test.png) * * */ 'z-profile'?: ZProfile_Props['config'] | '' | true; /** * The parameter `status` defines the status. Possibles values are: `online`, `absent` or `occupied` * * @example * ```html *
* AZ *
* ``` * Prints: * * // TODO * ![example_1](./Test.png) * * * */ 'status'?: ZProfile_Props['status']; };