@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.
18 lines (17 loc) • 408 B
TypeScript
export interface SlideType {
image?: string;
alt?: string;
content?: string;
[key: string]: any;
}
export interface SliderProps {
slides: SlideType[];
direction?: 'horizontal' | 'vertical';
autoplay?: boolean;
autoplayDelay?: number;
showDots?: boolean;
showControls?: boolean;
alwaysShowControls?: boolean;
transitionDuration?: number;
height?: string;
}