2022-04-21 04:49:11 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import Button from '/imports/ui/components/common/button/component';
|
|
|
|
import {
|
|
|
|
colorPrimary,
|
2024-08-23 11:05:10 +08:00
|
|
|
btnMutedBg,
|
2022-04-21 04:49:11 +08:00
|
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
|
|
|
|
|
|
const LocalEchoTestButton = styled(Button)`
|
2024-08-09 07:52:50 +08:00
|
|
|
height: 2rem;
|
|
|
|
width: 100%;
|
2022-04-21 04:49:11 +08:00
|
|
|
|
|
|
|
&:hover {
|
2024-08-23 11:05:10 +08:00
|
|
|
background-color: ${btnMutedBg} !important
|
2022-04-21 04:49:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
${({ animations }) => animations && `
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
`}
|
|
|
|
}
|
|
|
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
color: ${colorPrimary} !important;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
LocalEchoTestButton,
|
|
|
|
};
|