source: src/components/custom-breadcrumbs/link-item.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.2 KB
Line 
1// @mui
2import Box from '@mui/material/Box';
3import Link from '@mui/material/Link';
4// routes
5import { RouterLink } from 'src/routes/components';
6//
7import { BreadcrumbsLinkProps } from './types';
8
9// ----------------------------------------------------------------------
10
11type Props = {
12 link: BreadcrumbsLinkProps;
13 activeLast?: boolean;
14 disabled: boolean;
15};
16
17export default function BreadcrumbsLink({ link, activeLast, disabled }: Props) {
18 const { name, href, icon } = link;
19
20 const styles = {
21 typography: 'body2',
22 alignItems: 'center',
23 color: 'text.primary',
24 display: 'inline-flex',
25 ...(disabled &&
26 !activeLast && {
27 cursor: 'default',
28 pointerEvents: 'none',
29 color: 'text.disabled',
30 }),
31 };
32
33 const renderContent = (
34 <>
35 {icon && (
36 <Box
37 component="span"
38 sx={{
39 mr: 1,
40 display: 'inherit',
41 '& svg': { width: 20, height: 20 },
42 }}
43 >
44 {icon}
45 </Box>
46 )}
47
48 {name}
49 </>
50 );
51
52 if (href) {
53 return (
54 <Link component={RouterLink} href={href} sx={styles}>
55 {renderContent}
56 </Link>
57 );
58 }
59
60 return <Box sx={styles}> {renderContent} </Box>;
61}
Note: See TracBrowser for help on using the repository browser.