koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
28 lines (27 loc) • 570 B
JavaScript
"use client";
import { jsx as f } from "react/jsx-runtime";
import { forwardRef as p } from "react";
import l from "classnames";
import n from "./Text.module.css.js";
const d = p(
({ max: e, min: m, value: r, low: s, high: t, optimum: o, className: a, ...i }, c) => /* @__PURE__ */ f(
"meter",
{
...i,
min: m,
max: e,
low: s,
high: t,
optimum: o,
value: r,
className: l(n.meter, a),
ref: c,
children: r
}
)
);
d.displayName = "Meter";
export {
d as Meter
};
//# sourceMappingURL=Meter.js.map