UNPKG

svelte-5-ui-lib

Version:

Svelte 5 UI Lib is a UI library built from scratch to leverage Svelte 5's runes system, creating smooth, reactive components.

16 lines (15 loc) 321 B
import { tv } from 'tailwind-variants'; const buttonGroup = tv({ base: 'inline-flex rounded-lg shadow-sm', variants: { size: { sm: 'scale-90', md: 'scale-100', lg: 'scale-110' } }, defaultVariants: { size: 'md' } }); export { buttonGroup };