mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
fab83990c2
Fixed typos.
934 B
934 B
category | type | title |
---|---|---|
Components | Data Display | Tag |
Tag for categorizing or markup.
When To Use
-
It can be used to tag by dimension or property.
-
When categorizing.
API
Tag
Property | Description | Type | Default |
---|---|---|---|
color | Color of the Tag | string | - |
closable | Whether Tag can be closed | boolean | false |
onClose | Callback executed when tag is closed | (e) => void | - |
afterClose | Callback executed when close animation is completed | () => void | - |
Tag.CheckableTag
Property | Description | Type | Default |
---|---|---|---|
checked | Checked status of Tag | boolean | false |
onChange | Callback executed when Tag is checked/unchecked | (checked) => void | - |