chore: remove cn non-default exports

This commit is contained in:
Aarnav Tale
2025-01-28 17:46:16 -05:00
parent 843cfc4d4f
commit c9d8052e39
35 changed files with 62 additions and 76 deletions
+2 -4
View File
@@ -1,5 +1,5 @@
import React from 'react';
import { cn } from '~/utils/cn';
import cn from '~/utils/cn';
export interface TitleProps {
children: React.ReactNode;
@@ -8,8 +8,6 @@ export interface TitleProps {
export default function Title({ children, className }: TitleProps) {
return (
<h3 className={cn('text-2xl font-bold mb-6', className)}>
{children}
</h3>
<h3 className={cn('text-2xl font-bold mb-6', className)}>{children}</h3>
);
}