@octopusdeploy/design-system-components
Version:
The design systems component library.
13 lines (12 loc) • 461 B
TypeScript
import type React from "react";
export interface LegacyDialogContentProps {
className?: string;
children: React.ReactNode;
}
/**
* @deprecated
* Deprecated: 28/05/2026
* Replacement: Use workflows in Portal, or Dialog otherwise
* Reason: This component is deprecated and will be removed in a future release.
*/
export declare function LegacyDialogContent({ className, children }: LegacyDialogContentProps): import("react/jsx-runtime").JSX.Element;