koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
32 lines (31 loc) • 788 B
JavaScript
"use client";
import { jsx as e } from "react/jsx-runtime";
import { forwardRef as o } from "react";
import m from "classnames";
import t from "./Text.module.css.js";
const i = o(
({ children: s, className: l, ...r }, a) => /* @__PURE__ */ e("ul", { ...r, className: m(t.ul, l), ref: a, children: s })
);
i.displayName = "Ul";
const c = o(
({ children: s, className: l, ...r }, a) => /* @__PURE__ */ e("ol", { ...r, className: m(t.ol, l), ref: a, children: s })
);
c.displayName = "Ol";
const p = o(
({ children: s, className: l, ...r }, a) => /* @__PURE__ */ e(
"dl",
{
...r,
className: m(t["description-list"], l),
ref: a,
children: s
}
)
);
p.displayName = "Dl";
export {
p as Dl,
c as Ol,
i as Ul
};
//# sourceMappingURL=Lists.js.map