@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.js CHANGED
@@ -2771,6 +2771,7 @@ var Aside = ({
2771
2771
  children,
2772
2772
  size = "default",
2773
2773
  backgroundColor = "background",
2774
+ gap = "lg",
2774
2775
  ...rest
2775
2776
  }) => {
2776
2777
  const Element = element;
@@ -2779,10 +2780,11 @@ var Aside = ({
2779
2780
  {
2780
2781
  ref,
2781
2782
  className: clsx(
2782
- "flex flex-col items-stretch gap-6",
2783
+ "flex flex-col items-stretch",
2783
2784
  "sm:py-8 md:py-12 w-full",
2784
2785
  genBgAllColors[backgroundColor],
2785
2786
  asideSize[size],
2787
+ genGap[gap],
2786
2788
  "aside",
2787
2789
  className
2788
2790
  ),