Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanbsmith/00cd0f5044aff18935b2b09532726787 to your computer and use it in GitHub Desktop.
Save alanbsmith/00cd0f5044aff18935b2b09532726787 to your computer and use it in GitHub Desktop.
structuring-our-styled-components-example-element
// 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