UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

14 lines (13 loc) 351 B
/// <reference types="react" /> import React from 'react'; import StepProps from './PropsType'; export default class Stepper extends React.Component<StepProps, any> { static defaultProps: { step: number; readOnly: boolean; disabled: boolean; styles: any; inputStyle: {}; }; render(): JSX.Element; }