diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/HeaderBar/index.tsx | 9 |
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; |