import React from 'react' import styles from './index.module.scss' interface Props { fieldName: string placeholder: string value?: string error: string onBlur?: (event: React.ChangeEvent) => void onChange?: (event: React.ChangeEvent) => void } const TextFieldset = React.forwardRef( function fieldSet(props, ref) { return (