forked from LaconicNetwork/icns-frontend
21 lines
447 B
TypeScript
21 lines
447 B
TypeScript
// NextJs
|
|
import Image from "next/image";
|
|
import Link from "next/link";
|
|
|
|
// Image Assets
|
|
import LogoIcon from "../../public/images/svg/logo.svg";
|
|
|
|
// Styles
|
|
import { LogoContainer } from "./styled";
|
|
import { FunctionComponent } from "react";
|
|
|
|
export const Logo: FunctionComponent = () => {
|
|
return (
|
|
<Link href="/">
|
|
<LogoContainer>
|
|
<Image src={LogoIcon} fill={true} alt="Home Logo" />
|
|
</LogoContainer>
|
|
</Link>
|
|
);
|
|
};
|