UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

11 lines (10 loc) 238 B
export interface LinkOptions { disabled?: boolean; isExternal?: boolean; multiline?: boolean; size?: Size; variant?: Variant; } type Size = 'lg' | 'md' | 'sm' | 'xs'; type Variant = 'primary' | 'secondary'; export {};