# Tag
## Examples
### Default
```html
Category
```
### WithIcon
```html
Featured
```
### Variants
```html
${Object.values(TagVariant).map(
(variant) =>
html`
${variant}
${variant}
`
)}
```
### LargeVariants
```html
${Object.values(TagVariant).map(
(variant) =>
html`
${variant}
${variant}
`
)}
```
### WithSection
```html
Section
```
## Usage
Use the Tag component to:
- Indicate status or progress (e.g., "Pending," "Approved")
- Highlight categories or types (e.g., "Admin," "User")
- Draw attention to new or updated content (e.g., "New")
- Help users filter or identify items by type in lists, cards, or other grouped components
## Other Considerations
- **Concise Wording:** Use one or two words for clear communication (e.g., "New," "Alert").
- **Consistent Use:** Apply tags only where necessary and avoid overuse to prevent visual clutter.
- **Positioning:** Place tags in consistent positions, such as at the top-right corner of cards or lists, so users can easily scan for information.