@octopusdeploy/design-system-components
Version:
The design systems component library.
16 lines (15 loc) • 664 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LegacyDataTableToolsRow = LegacyDataTableToolsRow;
const jsx_runtime_1 = require("react/jsx-runtime");
const css_1 = require("@emotion/css");
const LegacyDataTableStyles_1 = require("./LegacyDataTableStyles");
/**
* @deprecated
* Deprecated: 28/05/2026
* Replacement: SimpleDataTable
* Reason: This component is deprecated and will be removed in a future release.
*/
function LegacyDataTableToolsRow({ className, children }) {
return (0, jsx_runtime_1.jsx)("tr", { className: (0, css_1.cx)(LegacyDataTableStyles_1.dataTableToolsRow, className), children: children });
}