source: src/components/nav-section/horizontal/styles.ts@ 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: 1.5 KB
RevLine 
[5d6f37a]1// @mui
2import { styled } from '@mui/material/styles';
3import ListItemIcon from '@mui/material/ListItemIcon';
4import ListItemButton from '@mui/material/ListItemButton';
5//
6import { NavItemProps, NavConfigProps } from '../types';
7
8// ----------------------------------------------------------------------
9
10type StyledItemProps = Omit<NavItemProps, 'item'> & {
11 config: NavConfigProps;
12};
13
14export const StyledItem = styled(ListItemButton, {
15 shouldForwardProp: (prop) => prop !== 'active',
16})<StyledItemProps>(({ active, open, depth, config, theme }) => {
17 const subItem = depth !== 1;
18
19 const activeStyles = {
20 color: theme.palette.text.primary,
21 backgroundColor: theme.palette.action.selected,
22 };
23
24 return {
25 // Root item
26 flexShrink: 0,
27 padding: config.itemPadding,
28 marginRight: config.itemGap,
29 borderRadius: config.itemRadius,
30 minHeight: config.itemRootHeight,
31 color: theme.palette.text.secondary,
32
33 // Active item
34 ...(active && {
35 ...activeStyles,
36 }),
37
38 // Sub item
39 ...(subItem && {
40 margin: 0,
41 padding: theme.spacing(0, 1),
42 minHeight: config.itemSubHeight,
43 }),
44
45 // Open
46 ...(open &&
47 !active && {
48 color: theme.palette.text.primary,
49 backgroundColor: theme.palette.action.hover,
50 }),
51 };
52});
53
54// ----------------------------------------------------------------------
55
56type StyledIconProps = {
57 size?: number;
58};
59
60export const StyledIcon = styled(ListItemIcon)<StyledIconProps>(({ size }) => ({
61 width: size,
62 height: size,
63 flexShrink: 0,
64 marginRight: 0,
65}));
Note: See TracBrowser for help on using the repository browser.