/** * Badge Variants Demo * Shows all available badge variants */ import React from 'react' export default function BadgeVariantsDemo() { const variants = [ { name: 'default', class: 'bg-primary text-primary-foreground' }, { name: 'secondary', class: 'bg-secondary text-secondary-foreground' }, { name: 'destructive', class: 'bg-destructive text-destructive-foreground' }, { name: 'outline', class: 'border text-foreground' }, { name: 'success', class: 'bg-success text-white' }, { name: 'warning', class: 'bg-warning text-white' }, { name: 'info', class: 'bg-info text-white' }, { name: 'review', class: 'bg-purple-500 text-white' }, { name: 'gradient', class: 'bg-gradient-to-r from-blue-500 to-purple-500 text-white' }, ] return (

Badge Variants

{variants.map((v) => ( {v.name} ))}
{/* Usage Examples */}

Usage Examples

Status: Active
Priority: High
Type: Feature
) }