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.

13 lines (12 loc) 398 B
import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { SystemProps } from "../system/system.js"; import "../system/index.js"; //#region src/progress/progress.types.d.ts type ProgressProps = SystemProps & ThemingProps<'Progress'> & { value?: number; showPercentage?: boolean; }; //#endregion export { ProgressProps }; //# sourceMappingURL=progress.types.d.ts.map