source: src/theme/overrides/default-props.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: 9.6 KB
Line 
1import { Theme } from '@mui/material/styles';
2import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3// components
4import Iconify from 'src/components/iconify';
5
6// ----------------------------------------------------------------------
7
8const ArrowDownIcon = (props: SvgIconProps) => (
9 <SvgIcon {...props}>
10 <path d="M12,16 C11.7663478,16.0004565 11.5399121,15.9190812 11.36,15.77 L5.36,10.77 C4.93474074,10.4165378 4.87653776,9.78525926 5.23,9.36 C5.58346224,8.93474074 6.21474074,8.87653776 6.64,9.23 L12,13.71 L17.36,9.39 C17.5665934,9.2222295 17.8315409,9.14373108 18.0961825,9.17188444 C18.3608241,9.2000378 18.6033268,9.33252029 18.77,9.54 C18.9551341,9.74785947 19.0452548,10.0234772 19.0186853,10.3005589 C18.9921158,10.5776405 18.8512608,10.8311099 18.63,11 L12.63,15.83 C12.444916,15.955516 12.2231011,16.0153708 12,16 Z" />
11 </SvgIcon>
12);
13
14const CheckboxIcon = (props: SvgIconProps) => (
15 <SvgIcon {...props}>
16 <path d="M17.9 2.318A5 5 0 0 1 22.895 7.1l.005.217v10a5 5 0 0 1-4.783 4.995l-.217.005h-10a5 5 0 0 1-4.995-4.783l-.005-.217v-10a5 5 0 0 1 4.783-4.996l.217-.004h10Zm-.5 1.5h-9a4 4 0 0 0-4 4v9a4 4 0 0 0 4 4h9a4 4 0 0 0 4-4v-9a4 4 0 0 0-4-4Z" />
17 </SvgIcon>
18);
19
20const CheckboxCheckedIcon = (props: SvgIconProps) => (
21 <SvgIcon {...props}>
22 <path d="M17 2a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm-1.625 7.255-4.13 4.13-1.75-1.75a.881.881 0 0 0-1.24 0c-.34.34-.34.89 0 1.24l2.38 2.37c.17.17.39.25.61.25.23 0 .45-.08.62-.25l4.75-4.75c.34-.34.34-.89 0-1.24a.881.881 0 0 0-1.24 0Z" />
23 </SvgIcon>
24);
25
26const CheckboxIndeterminateIcon = (props: SvgIconProps) => (
27 <SvgIcon {...props}>
28 <path d="M17,2 C19.7614,2 22,4.23858 22,7 L22,7 L22,17 C22,19.7614 19.7614,22 17,22 L17,22 L7,22 C4.23858,22 2,19.7614 2,17 L2,17 L2,7 C2,4.23858 4.23858,2 7,2 L7,2 Z M15,11 L9,11 C8.44772,11 8,11.4477 8,12 C8,12.5523 8.44772,13 9,13 L15,13 C15.5523,13 16,12.5523 16,12 C16,11.4477 15.5523,11 15,11 Z" />
29 </SvgIcon>
30);
31
32const RadioIcon = (props: SvgIconProps) => (
33 <SvgIcon {...props}>
34 <path d="M12 2A10 10 0 1 1 2 12C2 6.477 6.477 2 12 2Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Z" />
35 </SvgIcon>
36);
37
38const RadioCheckedIcon = (props: SvgIconProps) => (
39 <SvgIcon {...props}>
40 <path d="M12 2A10 10 0 1 1 2 12C2 6.477 6.477 2 12 2Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z" />
41 </SvgIcon>
42);
43
44const RatingIcon = (props: SvgIconProps) => (
45 <SvgIcon {...props}>
46 <path d="M17.56,21 C17.4000767,21.0006435 17.2423316,20.9629218 17.1,20.89 L12,18.22 L6.9,20.89 C6.56213339,21.067663 6.15259539,21.0374771 5.8444287,20.8121966 C5.53626201,20.5869161 5.38323252,20.2058459 5.45,19.83 L6.45,14.2 L2.33,10.2 C2.06805623,9.93860108 1.9718844,9.55391377 2.08,9.2 C2.19824414,8.83742187 2.51242293,8.57366684 2.89,8.52 L8.59,7.69 L11.1,2.56 C11.2670864,2.21500967 11.6166774,1.99588989 12,1.99588989 C12.3833226,1.99588989 12.7329136,2.21500967 12.9,2.56 L15.44,7.68 L21.14,8.51 C21.5175771,8.56366684 21.8317559,8.82742187 21.95,9.19 C22.0581156,9.54391377 21.9619438,9.92860108 21.7,10.19 L17.58,14.19 L18.58,19.82 C18.652893,20.2027971 18.4967826,20.5930731 18.18,20.82 C17.9989179,20.9468967 17.7808835,21.010197 17.56,21 L17.56,21 Z" />
47 </SvgIcon>
48);
49
50const TreeViewCollapseIcon = (props: SvgIconProps) => (
51 <SvgIcon {...props}>
52 <path d="M18,3 C19.6568542,3 21,4.34314575 21,6 L21,6 L21,18 C21,19.6568542 19.6568542,21 18,21 L18,21 L6,21 C4.34314575,21 3,19.6568542 3,18 L3,18 L3,6 C3,4.34314575 4.34314575,3 6,3 L6,3 Z M18,5 L6,5 C5.44771525,5 5,5.44771525 5,6 L5,6 L5,18 C5,18.5522847 5.44771525,19 6,19 L6,19 L18,19 C18.5522847,19 19,18.5522847 19,18 L19,18 L19,6 C19,5.44771525 18.5522847,5 18,5 L18,5 Z M12,8 C12.5522847,8 13,8.44771525 13,9 L13,9 L13,11 L15,11 C15.5522847,11 16,11.4477153 16,12 C16,12.5522847 15.5522847,13 15,13 L15,13 L13,13 L13,15 C13,15.5522847 12.5522847,16 12,16 C11.4477153,16 11,15.5522847 11,15 L11,15 L11,13 L9,13 C8.44771525,13 8,12.5522847 8,12 C8,11.4477153 8.44771525,11 9,11 L9,11 L11,11 L11,9 C11,8.44771525 11.4477153,8 12,8 Z" />
53 </SvgIcon>
54);
55
56const TreeViewExpandIcon = (props: SvgIconProps) => (
57 <SvgIcon {...props}>
58 <path d="M18,3 C19.6568542,3 21,4.34314575 21,6 L21,6 L21,18 C21,19.6568542 19.6568542,21 18,21 L18,21 L6,21 C4.34314575,21 3,19.6568542 3,18 L3,18 L3,6 C3,4.34314575 4.34314575,3 6,3 L6,3 Z M18,5 L6,5 C5.44771525,5 5,5.44771525 5,6 L5,6 L5,18 C5,18.5522847 5.44771525,19 6,19 L6,19 L18,19 C18.5522847,19 19,18.5522847 19,18 L19,18 L19,6 C19,5.44771525 18.5522847,5 18,5 L18,5 Z M15,11 C15.5522847,11 16,11.4477153 16,12 C16,12.5522847 15.5522847,13 15,13 L15,13 L9,13 C8.44771525,13 8,12.5522847 8,12 C8,11.4477153 8.44771525,11 9,11 L9,11 Z" />
59 </SvgIcon>
60);
61
62const TreeViewEndIcon = (props: SvgIconProps) => (
63 <SvgIcon {...props}>
64 <path d="M18,3 C19.6568542,3 21,4.34314575 21,6 L21,6 L21,18 C21,19.6568542 19.6568542,21 18,21 L18,21 L6,21 C4.34314575,21 3,19.6568542 3,18 L3,18 L3,6 C3,4.34314575 4.34314575,3 6,3 L6,3 Z M18,5 L6,5 C5.44771525,5 5,5.44771525 5,6 L5,6 L5,18 C5,18.5522847 5.44771525,19 6,19 L6,19 L18,19 C18.5522847,19 19,18.5522847 19,18 L19,18 L19,6 C19,5.44771525 18.5522847,5 18,5 L18,5 Z M14,8.99420168 C14.2666375,8.99420168 14.5222334,9.10068735 14.71,9.29 C14.8993127,9.4777666 15.0057983,9.73336246 15.0057983,10 C15.0057983,10.2666375 14.8993127,10.5222334 14.71,10.71 L14.71,10.71 L13.41,12 L14.71,13.29 C14.8993127,13.4777666 15.0057983,13.7333625 15.0057983,14 C15.0057983,14.2666375 14.8993127,14.5222334 14.71,14.71 C14.5222334,14.8993127 14.2666375,15.0057983 14,15.0057983 C13.7333625,15.0057983 13.4777666,14.8993127 13.29,14.71 L13.29,14.71 L12,13.41 L10.71,14.71 C10.5222334,14.8993127 10.2666375,15.0057983 10,15.0057983 C9.73336246,15.0057983 9.4777666,14.8993127 9.29,14.71 C9.10068735,14.5222334 8.99420168,14.2666375 8.99420168,14 C8.99420168,13.7333625 9.10068735,13.4777666 9.29,13.29 L9.29,13.29 L10.59,12 L9.29,10.71 C8.89787783,10.3178778 8.89787783,9.68212217 9.29,9.29 C9.68212217,8.89787783 10.3178778,8.89787783 10.71,9.29 L10.71,9.29 L12,10.59 L13.29,9.29 C13.4777666,9.10068735 13.7333625,8.99420168 14,8.99420168 Z" />
65 </SvgIcon>
66);
67
68// ----------------------------------------------------------------------
69
70export function defaultProps(theme: Theme) {
71 return {
72 MuiAlert: {
73 defaultProps: {
74 iconMapping: {
75 error: <Iconify icon="solar:danger-bold" width={24} />,
76 info: <Iconify icon="eva:info-fill" width={24} />,
77 success: <Iconify icon="eva:checkmark-circle-2-fill" width={24} />,
78 warning: <Iconify icon="eva:alert-triangle-fill" width={24} />,
79 },
80 },
81 },
82 MuiStack: {
83 defaultProps: {
84 useFlexGap: true,
85 },
86 },
87 MuiAppBar: {
88 defaultProps: {
89 color: 'transparent',
90 },
91 },
92 MuiAvatarGroup: {
93 defaultProps: {
94 max: 4,
95 },
96 },
97 MuiButtonGroup: {
98 defaultProps: {
99 disableElevation: true,
100 },
101 },
102 MuiButton: {
103 defaultProps: {
104 color: 'inherit',
105 disableElevation: true,
106 },
107 },
108 MuiCardHeader: {
109 defaultProps: {
110 titleTypographyProps: { variant: 'h6' },
111 subheaderTypographyProps: {
112 variant: 'body2',
113 marginTop: theme.spacing(0.5),
114 },
115 },
116 },
117 MuiChip: {
118 defaultProps: {
119 deleteIcon: <Iconify icon="solar:close-circle-bold" />,
120 },
121 },
122 MuiDialogActions: {
123 defaultProps: {
124 disableSpacing: true,
125 },
126 },
127 MuiFab: {
128 defaultProps: {
129 color: 'primary',
130 },
131 },
132 MuiLink: {
133 defaultProps: {
134 underline: 'hover',
135 },
136 },
137 MuiListItemText: {
138 defaultProps: {
139 primaryTypographyProps: {
140 typography: 'subtitle2',
141 },
142 secondaryTypographyProps: {
143 component: 'span',
144 },
145 },
146 },
147 MuiPaper: {
148 defaultProps: {
149 elevation: 0,
150 },
151 },
152 MuiSkeleton: {
153 defaultProps: {
154 animation: 'wave',
155 variant: 'rounded',
156 },
157 },
158 MuiFilledInput: {
159 defaultProps: {
160 disableUnderline: true,
161 },
162 },
163 MuiFormHelperText: {
164 defaultProps: {
165 component: 'div',
166 },
167 },
168 MuiTab: {
169 defaultProps: {
170 disableRipple: true,
171 iconPosition: 'start',
172 },
173 },
174 MuiTabs: {
175 defaultProps: {
176 textColor: 'inherit',
177 variant: 'scrollable',
178 allowScrollButtonsMobile: true,
179 },
180 },
181 MuiTablePagination: {
182 defaultProps: {
183 backIconButtonProps: {
184 size: 'small',
185 },
186 nextIconButtonProps: {
187 size: 'small',
188 },
189 },
190 },
191 MuiSlider: {
192 defaultProps: {
193 size: 'small',
194 },
195 },
196 MuiAutocomplete: {
197 defaultProps: {
198 popupIcon: <ArrowDownIcon />,
199 },
200 },
201 MuiSelect: {
202 defaultProps: {
203 IconComponent: ArrowDownIcon,
204 },
205 },
206 MuiNativeSelect: {
207 defaultProps: {
208 IconComponent: ArrowDownIcon,
209 },
210 },
211 MuiCheckbox: {
212 defaultProps: {
213 size: 'small',
214 icon: <CheckboxIcon />,
215 checkedIcon: <CheckboxCheckedIcon />,
216 indeterminateIcon: <CheckboxIndeterminateIcon />,
217 },
218 },
219 MuiRadio: {
220 defaultProps: {
221 size: 'small',
222 icon: <RadioIcon />,
223 checkedIcon: <RadioCheckedIcon />,
224 },
225 },
226 MuiRating: {
227 defaultProps: {
228 emptyIcon: <RatingIcon />,
229 icon: <RatingIcon />,
230 },
231 },
232 MuiTreeView: {
233 defaultProps: {
234 defaultCollapseIcon: <TreeViewCollapseIcon />,
235 defaultExpandIcon: <TreeViewExpandIcon />,
236 defaultEndIcon: <TreeViewEndIcon />,
237 },
238 },
239 };
240}
Note: See TracBrowser for help on using the repository browser.