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
*
* ```
* 
*
* - `white`:
* ```html
*
* ```
* 
*
* - `inline`:
* ```html
*
* ```
* 
*
* ---
* ### References:
* - #### [ Documentation](./atoms/logo)
*/
'z-logo'?: ZLogo_Props['config'] | '' | true;
/** */
inline?: '' | true;
};