UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

15 lines (13 loc) 312 B
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[]; }