@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
20 lines (19 loc) • 772 B
TypeScript
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/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