@julseb-lib/react 1.0.66 → 1.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs
CHANGED
|
@@ -2959,6 +2959,7 @@ var Aside = ({
|
|
|
2959
2959
|
children,
|
|
2960
2960
|
size = "default",
|
|
2961
2961
|
backgroundColor = "background",
|
|
2962
|
+
gap = "lg",
|
|
2962
2963
|
...rest
|
|
2963
2964
|
}) => {
|
|
2964
2965
|
const Element = element;
|
|
@@ -2967,10 +2968,11 @@ var Aside = ({
|
|
|
2967
2968
|
{
|
|
2968
2969
|
ref,
|
|
2969
2970
|
className: clsx(
|
|
2970
|
-
"flex flex-col items-stretch
|
|
2971
|
+
"flex flex-col items-stretch",
|
|
2971
2972
|
"sm:py-8 md:py-12 w-full",
|
|
2972
2973
|
genBgAllColors[backgroundColor],
|
|
2973
2974
|
asideSize[size],
|
|
2975
|
+
genGap[gap],
|
|
2974
2976
|
"aside",
|
|
2975
2977
|
className
|
|
2976
2978
|
),
|