@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.
23 lines (22 loc) • 521 B
TypeScript
import { TextSize, TextWeight } from '../Text/types';
export interface LinkProps {
label: string;
to: string;
target?: '_self' | '_blank';
iconLeft?: string;
iconRight?: string;
size?: TextSize;
weight?: TextWeight;
color?: string;
variant?: 'primary' | 'secondary';
active?: boolean;
disabled?: boolean;
}
export interface LinkContentProps {
label: string;
iconLeft?: string;
iconRight?: string;
size?: TextSize;
weight?: TextWeight;
color?: string;
}