@octopusdeploy/design-system-components
Version:
The design systems component library.
11 lines (10 loc) • 502 B
TypeScript
import type * as React from "react";
export interface LegacyDataTableRowProps {
displayNoBorder?: boolean;
displayNoBottomBorderForLastRow?: boolean;
className?: string;
disabled?: boolean | null;
onClick?: (e: React.MouseEvent<HTMLTableRowElement>) => void;
children?: React.ReactNode;
}
export declare function LegacyDataTableRow({ displayNoBorder, className, disabled, displayNoBottomBorderForLastRow, children, ...otherProps }: LegacyDataTableRowProps): React.ReactElement;