diff --git a/src/pages/Dashboard/DashboardCardWrapper.tsx b/src/pages/Dashboard/DashboardCardWrapper.tsx index 45560142..6e3fe0c9 100644 --- a/src/pages/Dashboard/DashboardCardWrapper.tsx +++ b/src/pages/Dashboard/DashboardCardWrapper.tsx @@ -1,21 +1,15 @@ -import { Stack } from 'tamagui' +import { Shadow } from '@status-im/components' type DashboardCardWrapperProps = { children: React.ReactNode + padding?: string } -const DashboardCardWrapper = ({ children }: DashboardCardWrapperProps) => { +const DashboardCardWrapper = ({ children, padding = '12px 16px' }: DashboardCardWrapperProps) => { return ( - + {children} - + ) }