18 lines
580 B
TypeScript
18 lines
580 B
TypeScript
import { LOGO_ICON, LOGO } from "@calcom/lib/constants";
|
|
|
|
export default function Logo({ small, icon }: { small?: boolean; icon?: boolean }) {
|
|
return (
|
|
<h1 className="inline">
|
|
<strong>
|
|
{icon ? (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img className="mx-auto w-9" alt="Cal" title="Cal" src={LOGO_ICON} />
|
|
) : (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img className={small ? "h-4 w-auto" : "h-5 w-auto"} alt="Cal" title="Cal" src={LOGO} />
|
|
)}
|
|
</strong>
|
|
</h1>
|
|
);
|
|
}
|