fix: radio group indicator fill

This commit is contained in:
Anton Reshetov 2024-01-16 14:28:42 +03:00
parent 72ed16a343
commit bcdb32a0b5

View File

@ -23,7 +23,7 @@ const props = defineProps<RadioGroupItemProps & { class?: string }>()
<RadioGroupIndicator
:class="cn('flex items-center justify-center', props.class)"
>
<Circle class="w-2.5 h-2.5 text-foreground" />
<Circle class="w-2.5 h-2.5 text-foreground fill-current" />
</RadioGroupIndicator>
</RadioGroupItem>
</template>