diff --git a/src/components/Box/Box.tsx b/src/components/Box/Box.tsx index 80cf5a4..b641bcd 100644 --- a/src/components/Box/Box.tsx +++ b/src/components/Box/Box.tsx @@ -7,13 +7,14 @@ interface Props { children: JSXElement curved?: boolean padding?: number + background?: string } export default (props: Props) => { const boxClass = createMemo(() => (props.curved ? 'curvedbox' : 'box')) return ( -
+
{props.children}
)