mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
35 lines
646 B
JavaScript
35 lines
646 B
JavaScript
import React from 'react';
|
|
import unitcalc from 'unitcalc';
|
|
import theme from '../theme';
|
|
import Button from '../button';
|
|
import { CloseIcon } from '../icons';
|
|
|
|
const StyledCloseButton = Button.extend`
|
|
background-color: ${theme.white};
|
|
padding: ${unitcalc(2)};
|
|
min-width: auto;
|
|
border: none;
|
|
box-shadow: none;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&:active:hover,
|
|
&:active:focus {
|
|
background-color: ${theme.white};
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
`;
|
|
|
|
/**
|
|
* @example ./usage.md
|
|
*/
|
|
const CloseButton = props => (
|
|
<StyledCloseButton {...props}>
|
|
<CloseIcon />
|
|
</StyledCloseButton>
|
|
);
|
|
|
|
export default CloseButton;
|