@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.
12 lines (11 loc) • 349 B
TypeScript
export interface ChipProps {
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
size?: 'extra-small' | 'small' | 'medium' | 'large';
disabled?: boolean;
removable?: boolean;
leftIcon?: string;
actionable?: boolean;
ghost?: boolean;
customColor?: string;
customTextColor?: string;
}