19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
|
import styled from 'styled-components';
|
||
|
import Button from '/imports/ui/components/common/button/component';
|
||
|
import { fontSizeBase } from '/imports/ui/stylesheets/styled-components/typography';
|
||
|
|
||
|
const CloseButton = styled(Button)`
|
||
|
span:first-of-type {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
|
||
|
& > i,
|
||
|
& > i::before {
|
||
|
width: auto;
|
||
|
font-size: ${fontSizeBase};
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default { CloseButton };
|