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