fix: use text-muted-foreground design token in Badge stories

This commit is contained in:
dante01yoon
2026-03-27 08:53:48 +09:00
parent 80554edfd0
commit abd94c2f63

View File

@@ -100,15 +100,15 @@ export const AllVariants: Story = {
<div class="flex items-center gap-4">
<div class="flex flex-col items-center gap-1">
<Badge label="NEW" variant="label" />
<span class="text-xs text-muted">label</span>
<span class="text-xs text-muted-foreground">label</span>
</div>
<div class="flex flex-col items-center gap-1">
<Badge variant="dot" severity="danger" />
<span class="text-xs text-muted">dot</span>
<span class="text-xs text-muted-foreground">dot</span>
</div>
<div class="flex flex-col items-center gap-1">
<Badge label="5" variant="circle" />
<span class="text-xs text-muted">circle</span>
<span class="text-xs text-muted-foreground">circle</span>
</div>
</div>
`