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.

36 lines (35 loc) 1.34 kB
import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { ChildrenProp } from "../core/types.js"; import { SystemProps } from "../system/system.js"; import "../system/index.js"; import "../core/index.js"; import { IconProp } from "../icon/icon.types.js"; import "../icon/index.js"; import { BoxProps } from "../box/box.types.js"; import "../box/index.js"; import { StepIndicatorVariant } from "../stepIndicator/stepIndicatorTypes.js"; import { ReactNode } from "react"; //#region src/stepperHorizontal/stepperHorizontalTypes.d.ts type StepHorizontalSize = 'md' | 'sm' | undefined; type StepperHorizontalProps = SystemProps & ThemingProps<'StepperHorizontal'> & ChildrenProp; type StepHorizontalProps = SystemProps & ChildrenProp & { icon?: IconProp; number?: number; size?: StepHorizontalSize; description?: ReactNode; title?: ReactNode; disabled?: boolean; className?: string; variant?: StepIndicatorVariant; }; type StepHorizontalTailProps = BoxProps & { variant?: StepIndicatorVariant; }; type StepHorizontalTitleProps = BoxProps & { size?: StepHorizontalSize; variant?: StepIndicatorVariant; }; //#endregion export { StepHorizontalProps, StepHorizontalSize, StepHorizontalTailProps, StepHorizontalTitleProps, StepperHorizontalProps }; //# sourceMappingURL=stepperHorizontalTypes.d.ts.map