@octopusdeploy/design-system-components
Version:
The design systems component library.
9 lines (8 loc) • 315 B
TypeScript
import type React from "react";
import type { DesignSystemLinkHref } from "../../routing";
interface ListLinkItemProps {
children: React.ReactNode;
href: DesignSystemLinkHref;
}
export declare function ListItemLink({ children, href }: ListLinkItemProps): import("react/jsx-runtime").JSX.Element;
export {};