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