export const PrevBtn = styled.div`
svg {
display: flex;
color: ${(props) => props.theme.colors.primary};
font-size: 50px;
cursor: pointer;
}
`
export const NextBtn = styled.div`
svg {
display: flex;
color: ${(props) => props.theme.colors.primary};
font-size: 50px;
cursor: pointer;
}
`
const commonStyles = styled.div`
svg {
display: flex;
color: ${(props) => props.theme.colors.primary};
font-size: 50px;
cursor: pointer;
}
`
export const PrevBtn = commonStyles
export const NextBtn = commonStyles