export interface Props { text?: string, className?: string, children?: any } const Label = ({ text, children, className }: Props): JSX.Element => ( ); export default Label