feat(rrule-display): display recurrence rule as a Badge instead of plain text

This commit is contained in:
2026-04-08 00:56:21 -04:00
parent 625e019ae7
commit 2992cfbccd

View File

@@ -13,7 +13,9 @@ export function RRuleDisplay({ rrule, className }: RRuleDisplayProps) {
return ( return (
<div className={className}> <div className={className}>
<span className="text-sm text-muted-foreground">{humanText}</span> <Badge variant="secondary" className="text-[10px] font-normal h-5">
{humanText}
</Badge>
</div> </div>
); );
} }