source: src/theme/overrides/components/rating.tsx@ 5d6f37a

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

add customer

  • Property mode set to 100644
File size: 958 bytes
Line 
1import { alpha, Theme } from '@mui/material/styles';
2import { ratingClasses } from '@mui/material/Rating';
3import { svgIconClasses } from '@mui/material/SvgIcon';
4
5// ----------------------------------------------------------------------
6
7export function rating(theme: Theme) {
8 return {
9 MuiRating: {
10 styleOverrides: {
11 root: {
12 [`&.${ratingClasses.disabled}`]: {
13 opacity: 0.48,
14 },
15 },
16 iconEmpty: {
17 color: alpha(theme.palette.grey[500], 0.48),
18 },
19 sizeSmall: {
20 [`& .${svgIconClasses.root}`]: {
21 width: 20,
22 height: 20,
23 },
24 },
25 sizeMedium: {
26 [`& .${svgIconClasses.root}`]: {
27 width: 24,
28 height: 24,
29 },
30 },
31 sizeLarge: {
32 [`& .${svgIconClasses.root}`]: {
33 width: 28,
34 height: 28,
35 },
36 },
37 },
38 },
39 };
40}
Note: See TracBrowser for help on using the repository browser.