@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) • 464 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
//#region src/progressCircular/progressCircular.types.d.ts
type ProgressCircularProps = SystemProps & ThemingProps<'ProgressCircular'> & {
label?: string;
value?: number;
showPercentage?: boolean;
};
//#endregion
export { ProgressCircularProps };
//# sourceMappingURL=progressCircular.types.d.ts.map