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) 688 B
import { ThemingProps } from "../theme/types.js"; import { SystemProps } from "../system/system.js"; import { IconProp } from "../icon/icon.types.js"; //#region src/stepper/stepperIndicatorTypes.d.ts type StepperIndicatorSize = 'md' | 'sm'; type StepperIndicatorVariant = 'active' | 'completed' | 'optional' | 'pending' | 'error'; type StepperIndicatorProps = SystemProps & ThemingProps<'StepperIndicator'> & { icon?: IconProp; className?: string; number?: number; size?: StepperIndicatorSize; variant?: StepperIndicatorVariant; }; //#endregion export { StepperIndicatorProps, StepperIndicatorSize, StepperIndicatorVariant }; //# sourceMappingURL=stepperIndicatorTypes.d.ts.map