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