UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

16 lines (15 loc) 389 B
import type { PropType } from 'vue'; export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export declare const useCommon: { (): void; props(): { readonly size: { readonly type: PropType<Size>; readonly default: "md"; readonly validator: (value: string) => boolean; }; }; validators(): { size: string[]; }; };