From 14e35e51ee1a53d645c64777da2b3b30e65816ee Mon Sep 17 00:00:00 2001 From: Tom Gotsman <64492814+tgberkeley@users.noreply.github.com> Date: Sun, 28 Jan 2024 15:51:11 -0800 Subject: [PATCH] add separator default width to fill the container (#2459) --- reflex/components/radix/themes/components/separator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/radix/themes/components/separator.py b/reflex/components/radix/themes/components/separator.py index 1982fb435..a079e400a 100644 --- a/reflex/components/radix/themes/components/separator.py +++ b/reflex/components/radix/themes/components/separator.py @@ -18,7 +18,7 @@ class Separator(CommonMarginProps, RadixThemesComponent): tag = "Separator" # The size of the select: "1" | "2" | "3" | "4" - size: Var[LiteralSeperatorSize] + size: Var[LiteralSeperatorSize] = Var.create_safe("4") # The color of the select color: Var[LiteralAccentColor]