/ src / cn.tsx
cn.tsx
1  export function cn(...classes: (boolean | string | null | undefined)[]) {
2    return classes.filter(Boolean).join(" ");
3  }