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

32 lines
920 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 markuping.
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.
- categorizing
## API
2016-11-10 11:14:03 +08:00
### Tag
2016-08-23 09:37:10 +08:00
| Property | Description | Type | Default |
|--------------|-----------------------|----------|--------------|
| color | The color of Tag | string | - |
2016-08-23 09:37:10 +08:00
| closable | Tag can be closed. | boolean | false |
| onClose | Callback when tag was closed | (e) => void | - |
| afterClose | Callback when closed animation is complete | () => void | - |
2016-11-10 11:14:03 +08:00
### Tag.CheckableTag
| Property | Description | Type | Default |
|--------------|-----------------------|----------|--------------|
| checked | To set the checked status for Tag | boolean | false |
| onChange | A callback which will be called while Tag is clicked | (checked) => void | - |