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.

7 lines (6 loc) • 252 B
import { Currency } from '../components/atoms'; import { ComputedRef } from 'vue'; export declare function useCurrency(currency: Currency): { currencyIconName: ComputedRef<string>; }; export type UseCurrencyReturn = ReturnType<typeof useCurrency>;