Corrected color for an unassigned avatar (#8977)

Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
This commit is contained in:
Alexander Platov
2025-05-16 20:35:24 +04:00
committed by GitHub
parent 845ec007bf
commit fd6dd3f4c1
@@ -122,7 +122,11 @@
/>
{:else}
<div class="icon">
<Icon icon={icon ?? AvatarIcon} fill={'var(--white-color)'} size={'full'} />
<Icon
icon={icon ?? AvatarIcon}
fill={color ? 'var(--primary-button-color)' : 'var(--theme-caption-color)'}
size={'full'}
/>
</div>
{/if}
</div>