UNPKG

@octopusdeploy/design-system-components

Version:
12 lines (11 loc) 405 B
import type * as React from "react"; interface LegacyDataTableRowColumnProps { fullWidth?: boolean; fullHeight?: boolean; className?: string; colSpan?: number; title?: string; children?: React.ReactNode; } export declare function LegacyDataTableRowColumn({ className, fullWidth, fullHeight, children, ...otherProps }: LegacyDataTableRowColumnProps): React.ReactElement; export {};