@selfdecode/sd-component-library 3.0.23 → 3.0.24

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.
@@ -6,3 +6,4 @@ export * from "./layout-independend-max-width-container";
6
6
  export * from "./max-width-container";
7
7
  export { MaxWidthContainerV2 as MaxWidth } from "./max-width-container-v2";
8
8
  export * from "./section-container";
9
+ export * from "./underlined-max-width-container";
@@ -1,2 +1,3 @@
1
1
  import React from "react";
2
- export declare const MaxWidthContainerV2: React.ForwardRefExoticComponent<import("../max-width-container").MaxWidthContainerProps & React.RefAttributes<HTMLDivElement>>;
2
+ import { MaxWidthContainerProps as Props } from "../max-width-container";
3
+ export declare const MaxWidthContainerV2: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1 @@
1
+ export { UnderlinedMaxWidthContainer } from "./underlined-max-width-container";
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { MaxWidthContainerProps as Props } from "../max-width-container";
3
+ export declare const UnderlinedMaxWidthContainer: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;