From 0beec0b2a6e88148adb565565f5833eac8fef1df Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Fri, 16 Feb 2024 11:34:52 +0700 Subject: [PATCH] Default high level radio to horizontal (#2637) --- reflex/components/radix/themes/components/radio_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/radix/themes/components/radio_group.py b/reflex/components/radix/themes/components/radio_group.py index ad7a0f10a..7ff901f37 100644 --- a/reflex/components/radix/themes/components/radio_group.py +++ b/reflex/components/radix/themes/components/radio_group.py @@ -87,7 +87,7 @@ class HighLevelRadioGroup(RadixThemesComponent): items: Var[List[str]] # The direction of the radio group. - direction: Var[LiteralFlexDirection] = Var.create_safe("column") + direction: Var[LiteralFlexDirection] # The gap between the items of the radio group. spacing: Var[LiteralSpacing] = Var.create_safe("2")