aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-12 13:58:35 +0100
committerGravatar Joe Banks <[email protected]>2020-10-12 13:58:35 +0100
commitbb86d6120f8f1d80fd32ad25c2e705a72dc38bb4 (patch)
treea375282b852ee215047851f79edcbcdd9c3c101b /src/components
parentRemove comments (diff)
Fix tests
Diffstat (limited to 'src/components')
-rw-r--r--src/components/HeaderBar/index.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/components/HeaderBar/index.tsx b/src/components/HeaderBar/index.tsx
index c3d46fc..a38e97b 100644
--- a/src/components/HeaderBar/index.tsx
+++ b/src/components/HeaderBar/index.tsx
@@ -1,9 +1,8 @@
/** @jsx jsx */
import { css, jsx } from "@emotion/core";
-import SVG from "react-inlinesvg";
-import header1 from "./header_1.svg";
-import header2 from "./header_2.svg";
+import Header1 from "./header_1.svg";
+import Header2 from "./header_2.svg";
interface HeaderBarProps {
title?: string
@@ -28,8 +27,8 @@ function HeaderBar({ title }: HeaderBarProps) {
return <div>
<div>
- <SVG src={header1} css={headerImageStyles}/>
- <SVG src={header2} css={headerImageStyles}/>
+ <Header1 css={headerImageStyles}/>
+ <Header2 css={headerImageStyles}/>
</div>
<h1 css={css`
font-size: 4vw;