icns-frontend/components/logo/index.tsx

18 lines
379 B
TypeScript
Raw Normal View History

2022-12-06 14:53:31 +00:00
// 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>
);
};