@octopusdeploy/design-system-components
Version:
The design systems component library.
13 lines (12 loc) • 546 B
TypeScript
import type React from "react";
interface ListItemButtonProps {
className?: string;
children: React.ReactNode;
onClick: () => void;
}
/**
* @deprecated Do not use this component. This exists specifically to support the process sidebar items in Portal.
* The styling of the process sidebar is very tightly coupled to its markup which includes this component's implementation.
*/
export declare function LegacyListItemButton({ className, children, onClick }: ListItemButtonProps): import("react/jsx-runtime").JSX.Element;
export {};