Spaces:
Running
Running
| export const Label = ({ children, className }: any) => { | |
| return ( | |
| <p | |
| className={`font-semibold uppercase text-dark-100 text-sm tracking-wider ${className}`} | |
| > | |
| {children} | |
| </p> | |
| ); | |
| }; | |