import React from 'react'; import { Box } from '../../primitives'; import type { IFormControlProps } from './props'; export const FormControlContext = React.createContext({}); const FormControl = ({ children, isInvalid, isRequired, isDisabled, isReadOnly, ...props }: IFormControlProps) => { return ( {children} ); }; export default FormControl;