Files
react-test/docs/data/joy/components/checkbox/HelperTextCheckbox.tsx

13 lines
351 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Checkbox from '@mui/joy/Checkbox';
import FormControl from '@mui/joy/FormControl';
import FormHelperText from '@mui/joy/FormHelperText';
export default function HelperTextCheckbox() {
return (
<FormControl>
<Checkbox label="Label" />
<FormHelperText>A description for the Checkbox.</FormHelperText>
</FormControl>
);
}