2021-10-25 22:15:16 +08:00
|
|
|
import styled from 'styled-components';
|
2022-02-15 04:20:50 +08:00
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
2021-10-26 20:37:26 +08:00
|
|
|
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
|
2021-10-25 22:15:16 +08:00
|
|
|
|
|
|
|
const CaptionsButton = styled(Button)`
|
|
|
|
${({ ghost }) => ghost && `
|
|
|
|
span {
|
|
|
|
box-shadow: none;
|
|
|
|
background-color: transparent !important;
|
2021-10-26 20:37:26 +08:00
|
|
|
border-color: ${colorWhite} !important;
|
2021-10-25 22:15:16 +08:00
|
|
|
}
|
|
|
|
`}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
CaptionsButton,
|
|
|
|
};
|