zent
Version:
一套前端设计语言和基于React的实现
21 lines (18 loc) • 451 B
TypeScript
/// <reference types="react" />
declare module 'zent/lib/tag' {
interface ITagProps {
color?: string
outline?: boolean
rounded?: boolean
borderColor?: string
bgColor?: string
fontColor?: string
closable?: boolean
onClose?: Function
children?: React.ReactChild
style?: React.CSSProperties
className?: string
prefix?: string
}
export default class Tag extends React.Component<ITagProps, any> {}
}