-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Checkbox] Add TS demo for FormControlLabelPosition (#17964)
- Loading branch information
1 parent
b711f56
commit 1e4d2db
Showing
2 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
docs/src/pages/components/checkboxes/FormControlLabelPosition.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from 'react'; | ||
import Checkbox from '@material-ui/core/Checkbox'; | ||
import FormGroup from '@material-ui/core/FormGroup'; | ||
import FormControlLabel from '@material-ui/core/FormControlLabel'; | ||
import FormControl from '@material-ui/core/FormControl'; | ||
import FormLabel from '@material-ui/core/FormLabel'; | ||
|
||
export default function FormControlLabelPosition() { | ||
return ( | ||
<FormControl component="fieldset"> | ||
<FormLabel component="legend">Label Placement</FormLabel> | ||
<FormGroup aria-label="position" row> | ||
<FormControlLabel | ||
value="top" | ||
control={<Checkbox color="primary" />} | ||
label="Top" | ||
labelPlacement="top" | ||
/> | ||
<FormControlLabel | ||
value="start" | ||
control={<Checkbox color="primary" />} | ||
label="Start" | ||
labelPlacement="start" | ||
/> | ||
<FormControlLabel | ||
value="bottom" | ||
control={<Checkbox color="primary" />} | ||
label="Bottom" | ||
labelPlacement="bottom" | ||
/> | ||
<FormControlLabel | ||
value="end" | ||
control={<Checkbox color="primary" />} | ||
label="End" | ||
labelPlacement="end" | ||
/> | ||
</FormGroup> | ||
</FormControl> | ||
); | ||
} |