"use client";
import * as React from "react";
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
import { useId } from "./util/useId";
interface SVGRProps {
  title?: string;
  titleId?: string;
}
const SvgSpeakerSlash = forwardRef(({
  title,
  titleId: _titleId,
  ...props
}: SVGProps<SVGSVGElement> & SVGRProps, ref: Ref<SVGSVGElement>) => {
  let titleId: string | undefined = useId();
  titleId = title ? _titleId ? _titleId : "title-" + titleId : undefined;
  return <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="none" viewBox="0 0 24 24" focusable={false} role="img" ref={ref} aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path fill="currentColor" fillRule="evenodd" d="M20.53 4.53a.75.75 0 0 0-1.06-1.06l-16 16a.75.75 0 1 0 1.06 1.06zM12.75 5a.75.75 0 0 0-1.219-.586L6.738 8.25H3a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h2.114a.75.75 0 0 0 0-1.5H3.75v-4.5H7a.75.75 0 0 0 .469-.164L11.25 6.56v1.55a.75.75 0 0 0 1.5 0zm0 10.887a.75.75 0 0 0-1.5 0v1.552l-.51-.407a.75.75 0 1 0-.937 1.171l1.728 1.383A.75.75 0 0 0 12.75 19zm6.906-8.68a.75.75 0 0 1 1.01.322 9.7 9.7 0 0 1 1.084 4.47 9.72 9.72 0 0 1-2.858 6.897.75.75 0 0 1-1.06-1.06A8.22 8.22 0 0 0 20.25 12a8.2 8.2 0 0 0-.916-3.783.75.75 0 0 1 .322-1.01m-1.227 2.732a.75.75 0 1 0-1.428.458c.162.504.249 1.043.249 1.603 0 1.45-.587 2.763-1.54 3.714a.75.75 0 1 0 1.06 1.061A6.73 6.73 0 0 0 18.75 12c0-.717-.112-1.41-.32-2.06m-3.007 1.921a.75.75 0 0 1 .608.87 4.15 4.15 0 0 1-1.156 2.214.75.75 0 1 1-1.06-1.062c.378-.378.642-.867.739-1.414a.75.75 0 0 1 .87-.608" clipRule="evenodd" /></svg>;
});
export default SvgSpeakerSlash;