icns-frontend/components/logo/index.tsx

21 lines
447 B
TypeScript
Raw Normal View History

2022-12-06 14:53:31 +00:00
// NextJs
import Image from "next/image";
2022-12-07 09:17:59 +00:00
import Link from "next/link";
2022-12-06 14:53:31 +00:00
// Image Assets
import LogoIcon from "../../public/images/svg/logo.svg";
// Styles
import { LogoContainer } from "./styled";
import { FunctionComponent } from "react";
export const Logo: FunctionComponent = () => {
return (
2022-12-07 09:17:59 +00:00
<Link href="/">
<LogoContainer>
<Image src={LogoIcon} fill={true} alt="Home Logo" />
</LogoContainer>
</Link>
2022-12-06 14:53:31 +00:00
);
};