import { Box, Typography } from "@mui/material"; export interface StyledFormControlProps { title?: React.ReactNode; children: React.ReactNode; } const StyledFormControl = ({ title, children }: StyledFormControlProps) => { return ( {title && ( {title} )} {children} ); }; export default StyledFormControl;