You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
954 B

---
category: Components
type: Data Display
title: Tag
---
Tag for categorizing or markup.
8 years ago
## When To Use
- It can be used to tag by dimension or property.
- When categorizing.
## API
### Tag
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| afterClose | Callback executed when close animation is completed, please use `onClose`, we will remove this in the next version | () => void | - | |
| closable | Whether the Tag can be closed | boolean | `false` | |
| color | Color of the Tag | string | - | |
| onClose | Callback executed when tag is closed | (e) => void | - | |
| visible | Whether the Tag is closed or not | boolean | `true` | 3.7.0 |
### Tag.CheckableTag
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| checked | Checked status of Tag | boolean | `false` | |
| onChange | Callback executed when Tag is checked/unchecked | (checked) => void | - | |