koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
29 lines (28 loc) • 594 B
JavaScript
"use client";
import { jsx as l } from "react/jsx-runtime";
import { forwardRef as n } from "react";
import p from "classnames";
import { Col as c } from "./Col.js";
import d from "./Layout.module.css.js";
const u = n(
({ children: m, className: r, xs: o = "fluid", sm: a, md: s, lg: i, xl: e, ...t }, f) => /* @__PURE__ */ l(
c,
{
...t,
as: "main",
ref: f,
xs: o,
sm: a,
md: s,
lg: i,
xl: e,
className: p(d.main, r),
children: m
}
)
);
u.displayName = "Main";
export {
u as Main
};
//# sourceMappingURL=Main.js.map