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}`};