diff --git a/src/components/Box/Box.tsx b/src/components/Box/Box.tsx index 255dd2a..49247fd 100644 --- a/src/components/Box/Box.tsx +++ b/src/components/Box/Box.tsx @@ -8,13 +8,14 @@ interface Props { curved?: boolean padding?: string background?: string + width?: string } export default (props: Props) => { const boxClass = createMemo(() => (props.curved ? 'curvedbox' : 'box')) return ( -
+
{props.children}
)