UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

17 lines 635 B
import { CSS } from '@project44-manifest/react-styles'; import type { ForwardRefComponent } from '@project44-manifest/react-types'; interface BreadcrumbProps { /** Theme aware style object */ css?: CSS; } declare const Breadcrumb: ForwardRefComponent<"nav", BreadcrumbProps>; interface BreadcrumbItemProps { /** Theme aware style object */ css?: CSS; /** Breadcrumb item link href */ href: string; } declare const BreadcrumbItem: ForwardRefComponent<"li", BreadcrumbItemProps>; export type { BreadcrumbItemProps, BreadcrumbProps }; export { Breadcrumb, BreadcrumbItem }; //# sourceMappingURL=breadcrumb.d.ts.map