koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
14 lines (13 loc) • 514 B
JavaScript
"use client";
import { jsx as e } from "react/jsx-runtime";
import { forwardRef as p } from "react";
import r from "classnames";
import a from "./Text.module.css.js";
const c = p(
({ children: s, className: l, wrapperRef: m, wrapperClassName: o, ...t }, i) => /* @__PURE__ */ e("div", { ref: m, className: r(a.tableWrapper, o), children: /* @__PURE__ */ e("table", { ...t, className: r(a.table, l), ref: i, children: s }) })
);
c.displayName = "Table";
export {
c as Table
};
//# sourceMappingURL=Table.js.map