reduce explicit indicator spacing slightly

This commit is contained in:
Kendall Garner
2026-02-11 19:34:20 -08:00
parent 064cf5103a
commit 409dd69fcb
2 changed files with 8 additions and 2 deletions
@@ -39,3 +39,7 @@
.muted {
opacity: 0.85;
}
.with-space {
padding-right: var(--theme-spacing-sm);
}
@@ -32,10 +32,12 @@ export const ExplicitIndicator = ({
return (
<span
aria-label={explicitStatus === ExplicitStatus.EXPLICIT ? 'Explicit' : 'Clean'}
className={clsx(styles.root, styles[`size-${size}`], className)}
className={clsx(styles.root, styles[`size-${size}`], className, {
[styles.withSpace]: withSpace,
})}
{...rest}
>
{withSpace ? `${symbol} ` : symbol}
{symbol}
</span>
);
};