@douyinfe/semi-ui
Version:
A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.
16 lines (15 loc) • 433 B
TypeScript
import React from 'react';
export type Size = 'default' | 'small';
export interface NavStepsProps {
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
current?: number;
initial?: number;
size?: Size;
children?: React.ReactNode;
onChange?: (current: number) => void;
"aria-label"?: string;
}
declare const Steps: (props: NavStepsProps) => React.JSX.Element;
export default Steps;