@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
19 lines (18 loc) • 483 B
TypeScript
import { IconProps } from '@iconify/react';
interface ListItemLinkProps {
primary: string;
pathname: string;
search?: string;
name: string;
subtitle?: string;
icon?: IconProps['icon'];
iconOnly?: boolean;
hasParent?: boolean;
fullWidth?: boolean;
divider?: boolean;
containerProps?: {
[prop: string]: any;
};
}
export default function ListItemLink(props: ListItemLinkProps): import("react/jsx-runtime").JSX.Element;
export {};