cal/components/Logo.tsx
2021-09-15 19:18:16 +01:00

15 lines
331 B
TypeScript

export default function Logo({ small }: { small?: boolean }) {
return (
<h1 className="brand-logo inline">
<strong>
<img
className={small ? "h-4 w-auto" : "h-5 w-auto"}
alt="Cal"
title="Cal"
src="/calendso-logo-white-word.svg"
/>
</strong>
</h1>
);
}