import classNames from "@calcom/ui/classNames"; import { Icon, type IconName } from "@calcom/ui/components/icon"; export function PlanIcon({ icon, variant = "single" }: { icon: IconName; variant?: "single" | "double" }) { const renderIconContainer = (index: number) => { // For double variant: 55px icon width + 24px gap = 79px between centers, so ±39.5px from center const leftPosition = variant === "double" ? `calc(50% + ${index === 0 ? -39.5 : 39.5}px)` : "50%"; return (