koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
27 lines (26 loc) • 587 B
JavaScript
"use client";
import { jsx as f } from "react/jsx-runtime";
import { forwardRef as p } from "react";
import l from "classnames";
import { Grid as c } from "./Grid.js";
import d from "./Layout.module.css.js";
const g = p(
({ width: r = "fluid", className: m, as: o = "div", children: e, gap: s = 0, base: a = 12, ...i }, t) => /* @__PURE__ */ f(
c,
{
...i,
width: r,
ref: t,
className: l(d.page, m),
as: o,
gap: s,
base: a,
children: e
}
)
);
g.displayName = "Page";
export {
g as Page
};
//# sourceMappingURL=Page.js.map