bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/styles.js
2022-02-14 20:20:50 +00:00

18 lines
474 B
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
const RestorePresentationButton = styled(Button)`
${({ ghost }) => ghost && `
span {
box-shadow: none;
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
`;
export default {
RestorePresentationButton,
};