import React from 'react' import './index.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 (