@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
7 lines (6 loc) • 384 B
TypeScript
export interface CSSComposition {
get: (name: string, value: string, theme?: string, modifier?: string) => string;
variable: (name: string, theme?: string, modifier?: string) => string;
variables: (object: Record<string, string | object>, theme?: string, modifier?: string) => Record<string, string>;
}
export declare const useCSS: (namespace?: string) => CSSComposition;