@spaced-out/ui-design-system
Version:
Sense UI components library
10 lines • 468 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { LinkProps } from '../../Link';
export type BreadcrumbLinkProps = LinkProps & {
isActive?: boolean;
id: string;
onClick?: (arg1: React.SyntheticEvent<HTMLElement>, id: string) => unknown;
};
export declare const BreadcrumbLink: Flow.AbstractComponent<BreadcrumbLinkProps, HTMLAnchorElement | null | undefined>;
//# sourceMappingURL=BreadcrumbLink.d.ts.map