Component
Textbox
Problem
Label element is not associated with the input control via htmlFor.
Suggested Fix
const id = useId();
<label htmlFor={id} className={styles.label}>
{label}
</label>
// Pass id to control via children
Impact
Clicking label doesn't focus input
Component
Textbox
Problem
Label element is not associated with the input control via htmlFor.
Suggested Fix
Impact
Clicking label doesn't focus input