components

This commit is contained in:
2026-01-19 01:46:07 +01:00
parent ac2add1984
commit 46266a7bbc
20 changed files with 234 additions and 161 deletions

18
components/ui/Label.tsx Normal file
View File

@@ -0,0 +1,18 @@
import React from 'react';
import { cn } from './utils';
export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {
className?: string;
}
export function Label({ className, ...props }: LabelProps) {
return (
<label
className={cn(
'text-[10px] md:text-xs font-extrabold text-primary uppercase tracking-widest',
className
)}
{...props}
/>
);
}