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