import { LmFormTextFieldProps } from './formBuilderTypes' import { TextFieldElement } from 'react-hook-form-mui' export default function LmFormTextField({ content, options }: LmFormTextFieldProps) { const { label, name, placeholder, help_text, textarea, required, type, rows, max_rows, _uid } = content const { margin, full_width, variant } = options return ( ) }