15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
|
|
interface AlertBadgeProps {
|
|||
|
|
count: number
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export default function AlertBadge({ count }: AlertBadgeProps) {
|
|||
|
|
if (count === 0) return null
|
|||
|
|
|
|||
|
|
return (
|
|||
|
|
<span className="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-orange-100 text-orange-800">
|
|||
|
|
⚠️ {count}
|
|||
|
|
</span>
|
|||
|
|
)
|
|||
|
|
}
|
|||
|
|
|