bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/icon/styles.js
2022-07-04 12:27:46 -03:00

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