import React from "react"; import './breadcrumb.css'; import Iconsvg from '../Icon/Icon'; type BreadcrumbItem = { label: string, to: string, active: boolean } const breadcrumbList:BreadcrumbItem[] = [ { label: 'Home', to: '/', active: false, }, { label: 'About', to: '/', active: false, }, { label: 'Details', to: '/', active: true, } ] type Props = { separator: any, size?: 'default' | 'small' | 'medium' | 'large', } const Breadcrumb = (props: Props) => { const {separator, size} = props; return (