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.

12 lines (11 loc) 557 B
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import { ProgressProps } from "./progress.types.js"; import "../index.js"; //#region src/progress/progress.d.ts declare const ProgressBase: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SystemProps, never>; /** Indicates a process progress. */ declare const Progress: VuiComponent<"div", ProgressProps>; //#endregion export { Progress, Progress as default, ProgressBase }; //# sourceMappingURL=progress.d.ts.map