UNPKG

@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) • 340 B
import { ComputedRef } from 'vue'; /** * Composable pour gérer le favicon dynamique basé sur le thème actuel */ export declare function useFavicon(): { faviconUrl: ComputedRef<string>; refreshFavicon: () => void; updateFavicon: (faviconUrl: string) => void; }; export type UseFaviconReturn = ReturnType<typeof useFavicon>;