koval-ui
Version:
React components collection with minimalistic design. Supports theming, layout, and input validation.
22 lines (21 loc) • 462 B
JavaScript
"use client";
import { jsx as t } from "react/jsx-runtime";
import { forwardRef as m } from "react";
import c from "classnames";
import l from "./Text.module.css.js";
const a = m(
({ children: o, className: e, ...r }, s) => /* @__PURE__ */ t(
"blockquote",
{
...r,
className: c(l.blockquote, e),
ref: s,
children: o
}
)
);
a.displayName = "BlockQuote";
export {
a as BlockQuote
};
//# sourceMappingURL=BlockQuote.js.map