diff --git a/components/layout/StackableContainer.tsx b/components/layout/StackableContainer.tsx index 4262e43..d4b6667 100644 --- a/components/layout/StackableContainer.tsx +++ b/components/layout/StackableContainer.tsx @@ -1,5 +1,3 @@ -import React from "react"; - interface Props { base?: boolean; children: React.ReactNode; @@ -7,10 +5,11 @@ interface Props { lessMargin?: boolean; lessRadius?: boolean; fullHeight?: boolean; + divProps?: React.HTMLAttributes; } const StackableContainer = (props: Props) => ( -
+
{props.children}