antd-mobile
Version:
基于 React 的移动设计规范实现
15 lines (14 loc) • 414 B
TypeScript
import * as React from 'react';
import TagProps from './TagPropsType';
export default class Tag extends React.Component<TagProps, any> {
static defaultProps: {
prefixCls: string;
disabled: boolean;
selected: boolean;
onChange(): void;
};
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
onClick: () => void;
render(): JSX.Element;
}