File size: 209 Bytes
9cd6ddb
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export const Label = ({ children, className }: any) => {
  return (
    <p
      className={`font-semibold uppercase text-dark-100 text-sm tracking-wider ${className}`}
    >
      {children}
    </p>
  );
};