blob: 9f199fc1e1a88fda49a696396813d8a39d49f51b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import React from "react";
import { IoInformationCircleOutline } from "react-icons/io5";
import { appName } from "../../constants";
import * as Styled from "./index.styled";
interface Props {
openInfoPopUp: () => void;
}
export function Header({ openInfoPopUp }: Props) {
return (
<Styled.Container>
<Styled.Content>
<IoInformationCircleOutline
onClick={openInfoPopUp}
size={30}
width={30}
height={30}
/>
<Styled.Logo>{appName}</Styled.Logo>
<a href="#"></a>
</Styled.Content>
</Styled.Container>
);
}
|