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