shellphone.app/app/features/core/components/logo.tsx

14 lines
259 B
TypeScript
Raw Normal View History

2021-09-25 12:58:28 +00:00
import type { FunctionComponent } from "react";
type Props = {
className?: string;
};
const Logo: FunctionComponent<Props> = ({ className }) => (
2022-05-14 10:22:06 +00:00
<div className={className}>
2022-07-13 22:18:49 +00:00
<img src="/shellphone.webp" alt="app logo" />
2021-09-25 12:58:28 +00:00
</div>
);
export default Logo;