UNPKG

equal-vue

Version:

Equal is a Vue 3 hackable UI library empowered by tailwindcss

8 lines (7 loc) 498 B
import { CSSClasses, CSSClassKeyValuePair, CSSRawClassesList } from './../types/variant'; import { Components } from '@/models/enums'; import { VariantJSWithClassesListProps } from '@/helpers/getVariantProps'; export declare const selectClasses: (classesObject: CSSClassKeyValuePair) => CSSClasses; export declare const useVariants: <T>(name: Components, props?: VariantJSWithClassesListProps<T>) => { transitions?: Record<string, Record<string, string>> | undefined; } & CSSRawClassesList<T>;