79617644

Date: 2025-05-12 10:33:37
Score: 0.5
Natty:
Report link
const [value, setValue] = useState('');

<TextField
  label="Name of the Hospital/Clinic/Consultation Center, etc."
  multiline
  minRows={2}
  fullWidth
  className="myname"
  value={value}
  onChange={(e) => setValue(e.target.value)}
/>

Style:

.myname {
  label {
    transform: translate(14px, 16px) scale(1) !important;
    color: #000 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }

  fieldset {
    legend {
      display: none !important;
      visibility: hidden !important;
    }
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MIH10