@spaced-out/ui-design-system
Version:
Sense UI components library
14 lines • 526 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { BaseLinkProps } from '../Link';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export type BreadcrumbsProps = {
classNames?: ClassNames;
children: React.ReactNode;
linkComponent?: Flow.AbstractComponent<BaseLinkProps, HTMLAnchorElement | null | undefined>;
};
export declare const Breadcrumbs: Flow.AbstractComponent<BreadcrumbsProps, HTMLDivElement>;
export {};
//# sourceMappingURL=Breadcrumbs.d.ts.map