UNPKG

@alitajs/antd-plus

Version:

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

10 lines (9 loc) 256 B
import { FC, CSSProperties } from 'react'; import { ItemData } from './types'; export interface FlexTagsProps { className?: string; style?: CSSProperties; list?: ItemData[]; } declare const FlexTags: FC<FlexTagsProps>; export default FlexTags;