main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 2 months ago |
add customer
|
-
Property mode
set to
100644
|
File size:
462 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { Theme } from '@mui/material/styles';
|
---|
| 2 |
|
---|
| 3 | // ----------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | export function radio(theme: Theme) {
|
---|
| 6 | return {
|
---|
| 7 | // CHECKBOX, RADIO, SWITCH
|
---|
| 8 | MuiFormControlLabel: {
|
---|
| 9 | styleOverrides: {
|
---|
| 10 | label: {
|
---|
| 11 | ...theme.typography.body2,
|
---|
| 12 | },
|
---|
| 13 | },
|
---|
| 14 | },
|
---|
| 15 |
|
---|
| 16 | MuiRadio: {
|
---|
| 17 | styleOverrides: {
|
---|
| 18 | root: {
|
---|
| 19 | padding: theme.spacing(1),
|
---|
| 20 | },
|
---|
| 21 | },
|
---|
| 22 | },
|
---|
| 23 | };
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.