import { IconType } from "../../types";
import { SvgIconComponent } from "@mui/icons-material";

export interface Item {
  id: string;
  label: string;
  href: string;
  icon?: SvgIconComponent | IconType;
}

export interface BreadCrumbProps {
  onPathClick: Function;
  onHomeClick: Function;
  items: Item[];
}