source: src/components/nav-section/horizontal/nav-section-horizontal.tsx@ 057453c

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

add customer

  • Property mode set to 100644
File size: 1.3 KB
Line 
1import { memo } from 'react';
2// @mui
3import Stack from '@mui/material/Stack';
4// theme
5import { hideScroll } from 'src/theme/css';
6//
7import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
8import { navHorizontalConfig } from '../config';
9import NavList from './nav-list';
10
11// ----------------------------------------------------------------------
12
13function NavSectionHorizontal({ data, config, sx, ...other }: NavSectionProps) {
14 return (
15 <Stack
16 direction="row"
17 sx={{
18 mx: 'auto',
19 ...hideScroll.y,
20 ...sx,
21 }}
22 {...other}
23 >
24 {data.map((group, index) => (
25 <Group
26 key={group.subheader || index}
27 items={group.items}
28 config={navHorizontalConfig(config)}
29 />
30 ))}
31 </Stack>
32 );
33}
34
35export default memo(NavSectionHorizontal);
36
37// ----------------------------------------------------------------------
38
39type GroupProps = {
40 items: NavListProps[];
41 config: NavConfigProps;
42};
43
44function Group({ items, config }: GroupProps) {
45 return (
46 <>
47 {items.map((list) => (
48 <NavList
49 key={list.title + list.path}
50 data={list}
51 depth={1}
52 hasChild={!!list.children}
53 config={config}
54 />
55 ))}
56 </>
57 );
58}
Note: See TracBrowser for help on using the repository browser.