17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
|
import styled from 'styled-components';
|
||
|
import Button from '/imports/ui/components/button/component';
|
||
|
|
||
|
const RestorePresentationButton = styled(Button)`
|
||
|
${({ ghost }) => ghost && `
|
||
|
span {
|
||
|
box-shadow: none;
|
||
|
background-color: transparent !important;
|
||
|
border-color: var(--color-white) !important;
|
||
|
}
|
||
|
`}
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
RestorePresentationButton,
|
||
|
};
|