export type LogotypeAnimatedProperties = { variant: 'animated'; burger?: boolean; onBack?: () => void; }; export type LogotypeStaticProperties = { variant?: 'text' | 'icon'; }; export type LogotypeProperties = LogotypeAnimatedProperties | LogotypeStaticProperties;