UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

11 lines (10 loc) 413 B
import * as React from 'react'; import type { InternalMarkObj } from '../Marks'; export interface StepsProps { prefixCls: string; marks: InternalMarkObj[]; dots?: boolean; style?: React.CSSProperties | ((dotValue: number) => React.CSSProperties); activeStyle?: React.CSSProperties | ((dotValue: number) => React.CSSProperties); } export default function Steps(props: StepsProps): JSX.Element;