import React from "react"; import type { LucideIcon } from "@calcom/ui/components/icon"; import type { SVGComponent } from "@lib/types/SVGComponent"; interface LinkIconButtonProps extends React.ButtonHTMLAttributes { Icon: SVGComponent | LucideIcon; } export default function LinkIconButton(props: LinkIconButtonProps) { return (
); }