UNPKG

antd-mobile

Version:

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

15 lines (14 loc) 402 B
import * as React from 'react'; export default class Item extends React.Component<any, any> { static propTypes: { prefixCls: React.Requireable<any>; iconName: React.Requireable<any>; disabled: React.Requireable<any>; }; static defaultProps: { prefixCls: string; disabled: boolean; }; static PopoverItem: boolean; render(): JSX.Element; }