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