Last active
December 8, 2017 18:18
-
-
Save alanbsmith/00cd0f5044aff18935b2b09532726787 to your computer and use it in GitHub Desktop.
structuring-our-styled-components-example-element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// lib/elements/A/index.js | |
import styled from 'styled-components'; | |
... | |
const A = styled.a` | |
color: #263238; | |
text-decoration: none; | |
transition: color 0.2s ease; | |
&:hover { | |
color: #0097a7; | |
text-decoration: underline; | |
} | |
`; | |
export default A; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment