export interface IBreadCrumbShape {
    icon?: React.ReactNode;
    text: string;
    href?: string;
}
export interface IBreadcrumbProps {
    links?: IBreadCrumbShape[];
}
