UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

14 lines (13 loc) 555 B
import { VuiComponent } from "../core/vui.js"; import { HeadingProps } from "./heading.types.js"; import "../index.js"; //#region src/heading/headings.d.ts declare const H1: VuiComponent<"h1", HeadingProps>; declare const H2: VuiComponent<"h2", HeadingProps>; declare const H3: VuiComponent<"h3", HeadingProps>; declare const H4: VuiComponent<"h4", HeadingProps>; declare const H5: VuiComponent<"h5", HeadingProps>; declare const H6: VuiComponent<"h6", HeadingProps>; //#endregion export { H1, H2, H3, H4, H5, H6 }; //# sourceMappingURL=headings.d.ts.map