16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
|
import type { FunctionComponent } from "react";
|
||
|
import Image from "next/image";
|
||
|
import clsx from "clsx";
|
||
|
|
||
|
type Props = {
|
||
|
className?: string;
|
||
|
};
|
||
|
|
||
|
const Logo: FunctionComponent<Props> = ({ className }) => (
|
||
|
<div className={clsx("relative", className)}>
|
||
|
<Image src="/shellphone.png" layout="fill" alt="app logo" />
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default Logo;
|