mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 15:50:06 +02:00
51 lines
987 B
JavaScript
51 lines
987 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import unitcalc from 'unitcalc';
|
|
import is from 'styled-is';
|
|
import theme from '../theme';
|
|
import Button from '../button';
|
|
|
|
const StyledButton = styled(Button)`
|
|
width: 100%;
|
|
padding: ${unitcalc(1)} ${unitcalc(3)};
|
|
background-color: ${theme.white};
|
|
color: ${theme.secondary};
|
|
text-align: left;
|
|
border: none;
|
|
box-shadow: none;
|
|
|
|
&:focus {
|
|
background-color: ${theme.white};
|
|
color: ${theme.primary};
|
|
border: none;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: ${theme.white};
|
|
color: ${theme.primary};
|
|
border: none;
|
|
}
|
|
|
|
&:active,
|
|
&:active:hover,
|
|
&:active:focus {
|
|
background-color: ${theme.white};
|
|
color: ${theme.primary};
|
|
border: none;
|
|
}
|
|
|
|
&[disabled] {
|
|
cursor: not-allowed;
|
|
pointer-events: none;
|
|
}
|
|
|
|
${is('disabled')`
|
|
color: ${props => props.theme.grey};
|
|
`}
|
|
`;
|
|
|
|
const TooltipButton = props =>
|
|
<StyledButton {...props} />;
|
|
|
|
export default TooltipButton;
|