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