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