UNPKG

@alitajs/antd-plus

Version:

基于 ant-design 封装的偏业务组件

13 lines (12 loc) 306 B
import { FC, CSSProperties } from 'react'; import { ItemData } from './types'; export interface TagsProps { prefixCls?: string; className?: string; style?: CSSProperties; list?: ItemData[]; max?: number; flexible?: boolean; } declare const Tags: FC<TagsProps>; export default Tags;