shellphone.app/app/features/core/components/logo.tsx
2022-07-14 00:18:49 +02:00

14 lines
259 B
TypeScript

import type { FunctionComponent } from "react";
type Props = {
className?: string;
};
const Logo: FunctionComponent<Props> = ({ className }) => (
<div className={className}>
<img src="/shellphone.webp" alt="app logo" />
</div>
);
export default Logo;