import type { ElProps } from '..'; export interface BreadcrumbProps extends Partial { /** * Change separator Icon between items */ separator?: 'arrows' | 'bullets' | 'dots'; } export interface BreadcrumbItemProps extends Partial { /** * Mark this as an active Breadcrumb item */ active?: boolean; /** * Set the Href of component */ href?: string; }