From 81bc1f47967b77f01b1b39110929f9b413da7426 Mon Sep 17 00:00:00 2001 From: John Leider Date: Tue, 9 Jul 2024 11:03:44 -0500 Subject: [PATCH] fix(VRadio): class/style duplication closes #20012 fixes #20005 --- .../vuetify/src/components/VRadio/VRadio.tsx | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/packages/vuetify/src/components/VRadio/VRadio.tsx b/packages/vuetify/src/components/VRadio/VRadio.tsx index c7c8aa62540..a1a6b82ec0d 100644 --- a/packages/vuetify/src/components/VRadio/VRadio.tsx +++ b/packages/vuetify/src/components/VRadio/VRadio.tsx @@ -20,18 +20,22 @@ export const VRadio = genericComponent()({ props: makeVRadioProps(), setup (props, { slots }) { - useRender(() => ( - - )) + useRender(() => { + const controlProps = VSelectionControl.filterProps(props) + + return ( + + ) + }) return {} },