@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
12 lines (11 loc) • 577 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { DividerProps } from "./divider.types.js";
import "../index.js";
//#region src/divider/divider.d.ts
declare const DividerBase: import("styled-components").StyledComponent<"hr", import("styled-components").DefaultTheme, SystemProps, never>;
/** Visually separates content with a horizontal or vertical line. */
declare const Divider: VuiComponent<"hr", DividerProps>;
//#endregion
export { Divider, Divider as default, DividerBase };
//# sourceMappingURL=divider.d.ts.map