cra-template-rb
Version:
The official React Boilerplate template for Create React App
17 lines (13 loc) • 307 B
text/typescript
import styled from 'styled-components/macro';
import { Link as RouterLink } from 'react-router-dom';
export const Link = styled(RouterLink)`
color: ${p => p.theme.primary};
text-decoration: none;
&:hover {
text-decoration: underline;
opacity: 0.8;
}
&:active {
opacity: 0.4;
}
`;