shellphone.app/app/core/components/logo.tsx
2021-09-25 20:58:28 +08:00

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;