import Lottie from "lottie-react"; import { LOGO_ICON, LOGO } from "@calcom/lib/constants"; import LogoAnimated from "./LogoAnimated.json"; import LogoAnimatedWhite from "./LogoAnimatedWhite.json"; export default function Logo({ small, icon, animated, }: { small?: boolean; icon?: boolean; animated?: boolean; }) { return (

{animated ? (
) : ( {icon ? ( Cal ) : ( Cal )} )}

); }