UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 329 B
import * as React from 'react'; import type { ProgressProps, ProgressSize } from './progress'; interface ProgressStepsProps extends ProgressProps { steps: number; size?: ProgressSize; strokeColor?: string | string[]; trailColor?: string; } declare const Steps: React.FC<ProgressStepsProps>; export default Steps;