13 lines
187 B
JavaScript
13 lines
187 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const Icon = styled.i`
|
||
|
${({ $rotate }) => $rotate && `
|
||
|
transform: rotate(180deg);
|
||
|
margin-top: 20%;
|
||
|
`}
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
Icon,
|
||
|
};
|