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