UNPKG

@octopusdeploy/design-system-components

Version:
18 lines (17 loc) 567 B
import type * as React from "react"; interface LegacyDataTableRowColumnProps { fullWidth?: boolean; fullHeight?: boolean; className?: string; colSpan?: number; title?: string; children?: React.ReactNode; } /** * @deprecated * Deprecated: 28/05/2026 * Replacement: SimpleDataTable * Reason: This component is deprecated and will be removed in a future release. */ export declare function LegacyDataTableRowColumn({ className, fullWidth, fullHeight, children, ...otherProps }: LegacyDataTableRowColumnProps): React.ReactElement; export {};