Files
realm-homepage/src/components/logo.tsx
2024-07-04 07:58:14 +00:00

10 lines
285 B
TypeScript

export default function Logo({ withText, ...props }: any) {
return (
<div className="flex items-center m-0" {...props}>
<img src="/logo.png" alt="Zen Logo" className="w-12 h-12" />
{withText && <span className="text-2xl font-bold ml-2">Zen</span>}
</div>
);
}