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