@club-employes/utopia
Version:
🎨 Modern Vue 3 design system with multi-brand theming, design tokens, and 30+ components. Supports Club Employés & Gifteo brands with light/dark modes.
11 lines (10 loc) • 339 B
TypeScript
export type LogoVariant = 'auto' | 'default' | 'white' | 'small' | 'small-white';
export type LogoSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
export type LogoBrand = 'club-employes' | 'gifteo';
export interface LogoProps {
variant?: LogoVariant;
size?: LogoSize;
brand?: LogoBrand;
alt?: string;
class?: string;
}