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.

17 lines (16 loc) 626 B
import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { SystemProps } from "../system/system.js"; import "../system/index.js"; import { IconProp } from "../icon/icon.types.js"; import "../icon/index.js"; //#region src/stepIndicator/stepIndicatorTypes.d.ts type StepIndicatorProps = SystemProps & ThemingProps<'StepIndicator'> & { icon?: IconProp; className?: string; number?: number; }; type StepIndicatorVariant = 'active' | 'completed' | 'optional' | 'pending' | 'error'; //#endregion export { StepIndicatorProps, StepIndicatorVariant }; //# sourceMappingURL=stepIndicatorTypes.d.ts.map