feat: add UI components including Skeleton, Slider, Sonner, Spinner, Switch, Table, Tabs, Textarea, Toggle Group, Toggle, Tooltip, and custom hook for mobile detection
2026-07-26 14:45:47 +07:00
|
|
|
import { clsx, type ClassValue } from "clsx"
|
|
|
|
|
import { twMerge } from "tailwind-merge"
|
2026-07-26 11:27:21 +07:00
|
|
|
|
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
feat: add UI components including Skeleton, Slider, Sonner, Spinner, Switch, Table, Tabs, Textarea, Toggle Group, Toggle, Tooltip, and custom hook for mobile detection
2026-07-26 14:45:47 +07:00
|
|
|
return twMerge(clsx(inputs))
|
2026-07-26 11:27:21 +07:00
|
|
|
}
|