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

14 lines
258 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}>
<img src="/shellphone.png" alt="app logo" />
2021-09-25 12:58:28 +00:00
</div>
);
export default Logo;