next-icons-logoNext IconsAll Icons
export type IconProps = {
  size?: number | string;
  color?: string;
  className?: string;
} & React.SVGProps<SVGSVGElement>;

export const HeadphoneMicIcon = ({
  size = 24,
  color = "currentColor",
  className,
  ...props
}: IconProps) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 24 24"
    width={size}
    height={size}
    fill={color}
    className={className}
    {...props}
  >
      <path d="m12,2C6.49,2,2,6.49,2,12v5c0,.55.45,1,1,1h3c.55,0,1-.45,1-1v-5c0-.55-.45-1-1-1h-1.93c.49-3.94,3.86-7,7.93-7s7.44,3.06,7.93,7h-1.93c-.55,0-1,.45-1,1v5c0,.55.45,1,1,1h2v1c0,.55-.45,1-1,1h-4c0-.55-.45-1-1-1h-4c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h9c1.65,0,3-1.35,3-3v-7c0-5.51-4.49-10-10-10Z" />
  </svg>
);

Icon

HeadphoneMic

Category

voice-activity

Use case

Use this icon in navbar items, social link groups, profile actions, settings rows, and call-to-action buttons.

Size

48px

Color

#18181b

Related voice-activity icons

CameraOffEqualizerFastForwardHeadphoneMicMicrophoneMusicMusicLibrary