joyent-portal/packages/ui-toolkit/src/close-button/index.js

35 lines
638 B
JavaScript
Raw Normal View History

2017-07-26 15:50:49 +03:00
import React from 'react';
import unitcalc from 'unitcalc';
import theme from '../theme';
import Button from '../button';
import { Close } 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
*/
2017-08-28 22:21:08 +03:00
const CloseButton = props => (
<StyledCloseButton {...props}>
<Close />
2017-08-28 22:21:08 +03:00
</StyledCloseButton>
);
export default CloseButton;