UNPKG

@chulkovdanila/svelte-uikit

Version:

Beautiful animated button component for Svelte with slide and arc animations. Easy to use, customizable, and similar to shadcn/ui style.

5 lines 194 B
export function cn(...inputs: (string | undefined | null | false)[]): string { return inputs .filter((input): input is string => typeof input === 'string' && input.length > 0) .join(' '); }