import type { SVGProps } from "react"; export interface CallOutboundIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function CallOutboundIcon({ className = "", size = 24, color = "currentColor", ...props }: CallOutboundIconProps) { return ( ); }