source: src/theme/overrides/components/radio.tsx

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 8 weeks ago

add customer

  • Property mode set to 100644
File size: 462 bytes
Line 
1import { Theme } from '@mui/material/styles';
2
3// ----------------------------------------------------------------------
4
5export 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.