import { Typography } from "@material-ui/core"; import React from "react"; export enum LabelSizes { sm = 12, md = 14, } interface LabelProps { text: string; size?: LabelSizes; } const Label: React.FC = ({ text, size = 12 }) => ( {text} ); export default Label;