@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
40 lines (38 loc) • 849 B
JavaScript
import vui from "../core/vui.js";
import { Heading } from "./heading.js";
import { jsx } from "react/jsx-runtime";
//#region src/heading/headings.tsx
const H1 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "2xl",
...props
}));
const H2 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "xl",
...props
}));
const H3 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "lg",
...props
}));
const H4 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "md",
...props
}));
const H5 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "sm",
...props
}));
const H6 = vui((props, ref) => /* @__PURE__ */ jsx(Heading, {
ref,
size: "xs",
...props
}));
//#endregion
export { H1, H2, H3, H4, H5, H6 };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=headings.js.map