@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
36 lines (35 loc) • 748 B
JavaScript
import { jsx as e } from "react/jsx-runtime";
import { ChoiceBox as i } from "../../ChoiceBox/ChoiceBox.js";
import { DataTable as a } from "../index.js";
import { cx as r } from "../../../styled-system/css/cx.js";
import { css as o } from "../../../styled-system/css/css.js";
const p = ({
className: t,
...m
}) => /* @__PURE__ */ e(
a.HeaderCell,
{
className: r(
o({
width: "sd.system.dimension.spacing.twoExtraLarge"
})
),
children: /* @__PURE__ */ e(
i,
{
...m,
type: "checkbox",
className: r(
o({
alignItems: "center",
verticalAlign: "middle"
}),
t
)
}
)
}
);
export {
p as HeaderCheckbox
};