fix: radio group indicator fill (#280)

* fix: radio group indicator fill

---------

Co-authored-by: zernonia <zernonia@gmail.com>
This commit is contained in:
Anton Reshetov 2024-01-17 09:28:32 +03:00 committed by GitHub
parent 53c539ddae
commit 7727c7282c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ const props = defineProps<RadioGroupItemProps & { class?: string }>()
<RadioGroupIndicator <RadioGroupIndicator
:class="cn('flex items-center justify-center', props.class)" :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-current fill-current" />
</RadioGroupIndicator> </RadioGroupIndicator>
</RadioGroupItem> </RadioGroupItem>
</template> </template>