import { ZLogo_Props } from '@zurich/dev-utils/code/Logo'; export type Logo_StyleProps = { /** ## Logo * * The `z-logo` attribute setted to `horizontal` or `vertical` for a `
` tag implements z-logo styling. * * --- * ### Attributes: * * - `color`: _( string )_ defines the color of the logo. If the color isn't defined the default * color would be _Zurich blue_, otherwise the color can be setted to `white` * - `direction`: _( string )_ orientation of the logo. The alternative value is: `inline` * * --- * ### Examples: * - `default`: * ```html *
* ``` * ![example_1](./atoms/Logo/Logo.png) * * - `white`: * ```html *
* ``` * ![example_2](./atoms/Logo/LogoWhite.png) * * - `inline`: * ```html *
* ``` * ![example_1](./atoms/Logo/Logo.png) * * --- * ### References: * - #### [![](./SB.png) Documentation](./atoms/logo) */ 'z-logo'?: ZLogo_Props['config'] | '' | true; /** */ inline?: '' | true; };