@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
33 lines (31 loc) • 1.2 kB
TypeScript
import { ThemingProps } from "../theme/types.js";
import { ChildrenProp } from "../core/types.js";
import { SystemProps } from "../system/system.js";
import { IconProp } from "../icon/icon.types.js";
import { BoxProps } from "../box/box.types.js";
import { StepIndicatorVariant } from "../stepIndicator/stepIndicatorTypes.js";
import { ReactNode } from "react";
//#region src/stepperVertical/stepperVerticalTypes.d.ts
type StepVerticalSize = 'md' | 'sm' | undefined;
type StepperVerticalProps = SystemProps & ThemingProps<'StepperVertical'> & ChildrenProp;
type StepVerticalProps = SystemProps & ChildrenProp & {
icon?: IconProp;
number?: number;
size?: StepVerticalSize;
description?: ReactNode;
title?: ReactNode;
disabled?: boolean;
className?: string;
variant?: StepIndicatorVariant;
};
type StepVerticalTailProps = BoxProps & {
size?: StepVerticalSize;
variant?: StepIndicatorVariant;
};
type StepVerticalTitleProps = BoxProps & {
size?: StepVerticalSize;
variant?: StepIndicatorVariant;
};
//#endregion
export { StepVerticalProps, StepVerticalSize, StepVerticalTailProps, StepVerticalTitleProps, StepperVerticalProps };
//# sourceMappingURL=stepperVerticalTypes.d.ts.map