From ade5b864357b3d9e654b74accf5015a766987c8d Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Fri, 4 Jun 2021 17:49:09 +0100 Subject: [PATCH] Fix box component styles --- src/components/Box/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Box/styles.ts b/src/components/Box/styles.ts index e42c602..aa28827 100644 --- a/src/components/Box/styles.ts +++ b/src/components/Box/styles.ts @@ -2,7 +2,7 @@ import styled from 'styled-components'; import { BoxProps } from '.'; export const Wrapper = styled.div` - ${({ cursor }) => cursor && `cursor: ${cursor}`} + ${({ cursor }) => cursor && `cursor: ${cursor}`}; ${({ position }) => position && `position: ${position}`}; ${({ zIndex }) => zIndex && `z-index: ${zIndex}`};