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 ( {appName} ); }