cra-template-rb
Version:
The official React Boilerplate template for Create React App
21 lines (17 loc) • 327 B
text/typescript
import styled from 'styled-components/macro';
export const TextButton = styled.button`
background: none;
outline: none;
padding: 0;
margin: 0;
border: none;
color: ${p => p.theme.primary};
cursor: pointer;
&:hover {
opacity: 0.8;
text-decoration: underline;
}
&:active {
opacity: 0.4;
}
`;