enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
raw
history blame contribute delete
209 Bytes
export const Label = ({ children, className }: any) => {
return (
<p
className={`font-semibold uppercase text-dark-100 text-sm tracking-wider ${className}`}
>
{children}
</p>
);
};