plopfile-generate
Version:
Installation:
20 lines (18 loc) • 449 B
JavaScript
import styled from 'styled-components';
import { Button } from 'antd';
export const ButtonWrapper = styled(Button)`
border: none;
color: ${props => props.theme.primary};
height: 20px;
background: transparent;
&:hover {
background: transparent;
transform: scale(1.1,1.1);
color: ${props => props.theme.primary};
}
&:focus {
background: transparent;
transform: scale(1.1,1.1);
color: ${props => props.theme.primary};
}
`;