@storybook/design-system
Version:
Storybook design system
12 lines • 350 B
TypeScript
import { LinkProps } from '../Link';
export interface LinkItem extends Pick<LinkProps, 'LinkWrapper'> {
path: string;
title: string;
}
interface ItemLinkProps {
currentPath: string;
item: LinkItem;
}
export declare function ItemLink({ currentPath, item }: ItemLinkProps): JSX.Element;
export {};
//# sourceMappingURL=ItemLink.d.ts.map