Skip to content

Commit

Permalink
fix(radio): don't use variant group
Browse files Browse the repository at this point in the history
if we use variant group user have to configure it
  • Loading branch information
jd-solanki committed Dec 12, 2022
1 parent 61168ea commit b1f8d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/anu-vue/src/components/radio/ARadio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const ARadio = defineComponent({
class={[
`after:bg-${props.color}`,
isChecked.value ? `after:scale-full border-${props.color}` : 'after:scale-0 border-[hsla(var(--a-base-color),var(--a-border-opacity))]',
'a-radio-circle after:(w-full h-full rounded-full block content-empty transform transition transition-transform)',
'a-radio-circle after:w-full after:h-full after:rounded-full after:block after:content-empty after:transform after:transition after:transition-transform',
]}
/>
{slots.default ? slots.default() : props.label}
Expand Down

0 comments on commit b1f8d72

Please sign in to comment.