import React from 'react'; import { Box, BoxProps } from '@chakra-ui/react'; const FormLabel = ({ children, required, ...props }: BoxProps & { required?: boolean; children: React.ReactNode; }) => { return ( {required && ( * )} {children} ); }; export default FormLabel;