source: src/components/custom-breadcrumbs/types.ts

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

add customer

  • Property mode set to 100644
File size: 447 bytes
Line 
1// @mui
2import { BreadcrumbsProps } from '@mui/material/Breadcrumbs';
3
4// ----------------------------------------------------------------------
5
6export type BreadcrumbsLinkProps = {
7 name?: string;
8 href?: string;
9 icon?: React.ReactElement;
10};
11
12export interface CustomBreadcrumbsProps extends BreadcrumbsProps {
13 heading?: string;
14 moreLink?: string[];
15 activeLast?: boolean;
16 action?: React.ReactNode;
17 links: BreadcrumbsLinkProps[];
18}
Note: See TracBrowser for help on using the repository browser.