* There is lot of hardcoding links in application * Apply suggestions from code review Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: gitstart <gitstart@users.noreply.github.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
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>
|
|
);
|
|
}
|