UNPKG

@beisen-phoenix/select

Version:

## 概述

20 lines (19 loc) 466 B
import React from 'react'; import { Item } from './PropsInterface'; import './index.scss'; interface TagsProps { onClick?: Function; item: Item; selectDisabled?: boolean; size?: 'small' | 'normal' | 'large'; } export default class Tags extends React.PureComponent<TagsProps, any> { private tagSpanRef; state: { hover: boolean; }; onMouseEnter: () => void; onMouseLeave: () => void; render(): JSX.Element; } export {};