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