bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/icon/styles.js

16 lines
243 B
JavaScript
Raw Normal View History

2022-07-04 23:27:46 +08:00
import styled from 'styled-components';
const Icon = styled.i`
${({ color }) => color && `
color: ${color};
`}
2022-07-04 23:27:46 +08:00
${({ $rotate }) => $rotate && `
transform: rotate(180deg);
margin-top: 20%;
`}
`;
export default {
Icon,
};