UNPKG

epn-ui

Version:

Дизайн система кабинета ВМ

14 lines (13 loc) 412 B
import type { BreadcrumbProps } from 'antd/es/breadcrumb'; import type { ReactNode } from 'react'; export interface IBreadcrumbItem { title: ReactNode; href?: string; onClick?: () => void; } export interface IBaseBreadCrumbProps extends Omit<BreadcrumbProps, 'items'> { items: IBreadcrumbItem[]; className?: string; separator?: ReactNode; showLastItemAsLink?: boolean; }