import React from 'react'; import { Box } from '../../primitives'; import { useToken } from '../../../theme'; import { FormControlContext } from './FormControl'; import type { IFormHelperTextProps, IFormControlContext } from './props'; const FormHelperText = ({ children, style, _disabled, _focus, _invalid, ...props }: IFormHelperTextProps) => { const { isInvalid, isDisabled }: IFormControlContext = React.useContext( FormControlContext ); const mutedColor = useToken('colors', 'muted.2'); return ( {children} ); }; export default FormHelperText;