|
@@ -40,7 +40,7 @@ class Html(Div):
|
|
given_class_name = props.pop("class_name", [])
|
|
given_class_name = props.pop("class_name", [])
|
|
if isinstance(given_class_name, str):
|
|
if isinstance(given_class_name, str):
|
|
given_class_name = [given_class_name]
|
|
given_class_name = [given_class_name]
|
|
- props["class_name"] = ["rx-Html", "prose", *given_class_name]
|
|
|
|
|
|
+ props["class_name"] = ["rx-Html", *given_class_name]
|
|
|
|
|
|
# Create the component.
|
|
# Create the component.
|
|
return super().create(**props)
|
|
return super().create(**props)
|