A visual indicator for notification counts or status information.
import { type HTMLStyledProps, styled } from '@styled-system/jsx' import { badge } from '@styled-system/recipes' export const Badge = styled('div', badge) export type BadgeProps = HTMLStyledProps<typeof Badge>
import { Badge } from '@/components/ui/badge'
<Badge variant="default">Badge</Badge>