@storybook/design-system
Version:
Storybook design system
14 lines • 436 B
TypeScript
import React from 'react';
import { Link } from '../Link';
export interface BulletLinkItem {
path: string;
title: string;
LinkWrapper?: Pick<React.ComponentProps<typeof Link>, 'LinkWrapper'>;
}
interface BulletLinkProps {
currentPath: string;
item: BulletLinkItem;
}
export declare function BulletLink({ currentPath, item, ...rest }: BulletLinkProps): JSX.Element;
export {};
//# sourceMappingURL=BulletLink.d.ts.map