Files
e-tib.com/components/ui/Label.tsx
Marc Mintel 2cb0b50193
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 39s
Build & Deploy / 🧪 QA (push) Successful in 1m44s
Build & Deploy / 🏗️ Build (push) Successful in 3m23s
Build & Deploy / 🚀 Deploy (push) Successful in 47s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 1m2s
Build & Deploy / 🔔 Notify (push) Successful in 2s
feat(ui): add AnimatedGlossyBorder and refine industrial interactions
2026-05-13 10:23:47 +02:00

19 lines
427 B
TypeScript

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 select-none',
className
)}
{...props}
/>
);
}