UNPKG

@spaced-out/ui-design-system

Version:
11 lines 548 B
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