@octopusdeploy/design-system-components
Version:
The design systems component library.
11 lines (10 loc) • 383 B
TypeScript
export interface MenuItemDownloadLinkProps {
href: string;
downloadFileName: string;
label: string;
shortDescription?: string;
onClick?: () => void;
autoFocus?: boolean;
compact?: boolean;
}
export declare const MenuItemDownloadLink: import("react").ForwardRefExoticComponent<MenuItemDownloadLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;