Skip to content

Instantly share code, notes, and snippets.

@maciejmatu
Created October 20, 2017 22:15
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 maciejmatu/5558628fe94416069152ad5bdb94cd3c to your computer and use it in GitHub Desktop.
Save maciejmatu/5558628fe94416069152ad5bdb94cd3c to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
const HeaderText = styled.h1`
font-size: ${ props => props.large ? 32 : 24 }px;
color: wheat;
text-transform: uppercase;
`;
export default () => (
<HeaderText large>Looks Cool</HeaderText>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment