ant-design/components/tag/index.en-US.md

33 lines
869 B
Markdown
Raw Normal View History

2016-08-23 09:37:10 +08:00
---
category: Components
type: Data Display
2016-09-21 11:28:38 +08:00
title: Tag
2016-08-23 09:37:10 +08:00
---
Tag for categorizing or markup.
2016-08-23 09:37:10 +08:00
2016-09-10 13:43:30 +08:00
## When To Use
2016-08-23 09:37:10 +08:00
- It can be used to tag by dimension or property.
- When categorizing.
2016-08-23 09:37:10 +08:00
## API
2016-11-10 11:14:03 +08:00
### Tag
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| afterClose | Callback executed when close animation is completed | () => void | - |
2018-06-12 22:23:04 +08:00
| closable | Whether the Tag can be closed | boolean | `false` |
2017-10-25 10:25:44 +08:00
| color | Color of the Tag | string | - |
| onClose | Callback executed when tag is closed | (e) => void | - |
2018-06-12 22:23:04 +08:00
| visible | Whether the Tag is closed or not | boolean | `true` |
2016-11-10 11:14:03 +08:00
### Tag.CheckableTag
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| checked | Checked status of Tag | boolean | `false` |
| onChange | Callback executed when Tag is checked/unchecked | (checked) => void | - |