Badge
Introduction
The Badge component provides a compact way to display status information, labels, or counts. It supports different types, sizes, and shapes with optional animations to highlight interactivity. Built with accessibility in mind, it adapts to both light and dark modes automatically.
When to use
Use the Badge component when you need to:
- Display status information
- Show notification counts
- Indicate categories or tags
- Label content types
- Highlight new features
- Show user roles or permissions
- Indicate validation states
Quick example
Try hovering over the notification icon button to see the animation effect!
Usage
Learn how to implement the Badge component in your project, from basic usage to advanced configurations.
Basic
---import { Badge } from 'accessible-astro-components'---
<Badge>Default</Badge><Badge type="info">Info</Badge><Badge type="success">Success</Badge><Badge type="warning">Warning</Badge><Badge type="error">Error</Badge>
Sizes
<Badge size="sm">Small</Badge><Badge size="md">Medium</Badge><Badge size="lg">Large</Badge>
Shapes
<Badge isPill>Pill Badge</Badge><Badge isCircular>1</Badge>
Interactive badges
---import { Badge } from 'accessible-astro-components'import { Icon } from 'astro-icon/components'---
<Badge isButton>Click me</Badge>
<Badge type="info" isButton animateOnHover label="5 new notifications"> <Icon name="ion:notifications" /></Badge>
With animations
<Badge type="info" isButton animateOnHover animationType="rotate" label="Refresh content"> <Icon name="ion:refresh" /></Badge>
<Badge type="warning" pulse> New</Badge>
With screen reader labels
<Badge isCircular type="error" label="New messages: 5"> 5</Badge>
<Badge type="info" isButton label="Show 8 notifications"> <Icon name="ion:notifications" /> 8</Badge>
Props
Configure the Badge component using these available props to customize its behavior and appearance.
Prop | Type | Default | Description |
---|---|---|---|
size | 'sm' | 'md' | 'lg' | 'md' | Size of the badge |
type | 'info' | 'success' | 'warning' | 'error' | 'default' | 'default' | Type/color variant of the badge |
isButton | boolean | false | Whether to render as a button element |
animateOnHover | boolean | false | Whether to animate the icon on hover (only works with isButton) |
animationType | 'rotate' | 'boop' | 'bounce' | 'none' | 'boop' | Type of animation to apply on hover |
animationIntensity | number | 5 | Animation intensity (1-10) |
isCircular | boolean | false | Whether to display the badge as a circle |
isPill | boolean | false | Whether to display the badge with fully rounded corners |
pulse | boolean | false | Whether to apply a pulsating animation |
label | string | '' | Additional context for screen readers (visually hidden) |
class | string | '' | Additional CSS classes to apply |
Accessibility
Accessibility isn’t an afterthought - it’s built into the core of this component through semantic HTML elements and proper ARIA attributes. The Badge component is built with accessibility in mind:
- Uses semantic HTML elements (
<span>
or<button>
) - Proper button behavior when
isButton
is true - High contrast color combinations
- Automatic light/dark mode adaptation
- Respects user’s reduced-motion preferences
- Maintains focus states for interactive badges
- Provides screen reader context with the
label
prop
Styling
Make the Badge component your own with custom styling while maintaining its accessibility features.
/* Option 1: Using :global() in your style block */<style> :global(.badge) { font-weight: 600; letter-spacing: 0.025em; }
:global(.badge.type-info) { border-color: light-dark(hsl(210 100% 50%), hsl(210 100% 60%)); background-color: light-dark(hsl(210 100% 95%), hsl(210 100% 20%)); }
:global(button.badge:focus-visible) { outline: 2px solid currentColor; outline-offset: 2px; }</style>
/* Option 2: Using is:global on the style tag */<style is:global> .badge { font-weight: 600; letter-spacing: 0.025em; }
.badge.type-info { border-color: light-dark(hsl(210 100% 50%), hsl(210 100% 60%)); background-color: light-dark(hsl(210 100% 95%), hsl(210 100% 20%)); }
button.badge:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }</style>
<Badge class="font-semibold tracking-wide" type="info"> Custom Badge</Badge>
Interactive examples
See the Badge component in action with these practical examples demonstrating different variants and styling options.
Status badges
Notification badges
3
5
2
Interactive badges with animations
New feature (pulse)
Accessible icon-only badges
These badges provide proper context to screen readers while maintaining a clean visual design. For optimal accessibility and usability, it’s recommended to display text alongside icons whenever possible.