Skip to content

Instantly share code, notes, and snippets.

@staylor
Created October 8, 2018 21:57
Show Gist options
  • Save staylor/2de5120ba911e699914e5ea2cc68faa6 to your computer and use it in GitHub Desktop.
Save staylor/2de5120ba911e699914e5ea2cc68faa6 to your computer and use it in GitHub Desktop.
import React from 'react';
import { css } from 'emotion';
import TLogo from './TLogo';
const black = '#000';
const logoClass = css`
height: 24px;
width: 24px;
@media (min-width: 800px) {
height: 48px;
width: 48px;
}
`;
export default function Header() {
return (
<header>
<TLogo fill={black} className={logoClass} />
</header>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment