koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
13 lines (12 loc) • 488 B
JavaScript
"use client";
import { jsx as e } from "react/jsx-runtime";
import m from "./Cells.module.css.js";
import { NumberPercent as c } from "../../Number/NumberPercent.js";
const n = ({ value: r, cellContext: l, ...o }) => {
const t = l.table.options.meta?.locale;
return /* @__PURE__ */ e("div", { className: m.viewNumberCell, children: /* @__PURE__ */ e(c, { ...o, locale: t, value: Number(r) }) });
};
export {
n as ViewPercentageCell
};
//# sourceMappingURL=ViewPercentageCell.js.map