@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
23 lines (22 loc) • 456 B
JavaScript
import { jsx as m } from "react/jsx-runtime";
import f from "react";
import { cx as i } from "../../../styled-system/css/cx.js";
import { css as s } from "../../../styled-system/css/css.js";
const n = f.forwardRef(({ children: r, className: o, ...t }, e) => /* @__PURE__ */ m(
"tr",
{
ref: e,
role: "row",
className: i(
s({
position: "relative"
}),
o
),
...t,
children: r
}
));
export {
n as Tr
};