"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 SvgHearingLoopRadio = 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="M10.729 2.269c-3.905-.601-7.427 2.42-7.427 6.372a.75.75 0 1 0 1.5 0A4.947 4.947 0 0 1 10.5 3.75a4.91 4.91 0 0 1 3.09 1.773.75.75 0 1 0 1.166-.943 6.41 6.41 0 0 0-4.028-2.312M6.302 9.232a3.417 3.417 0 0 1 5.993-2.246.75.75 0 0 1-1.131.985 1.917 1.917 0 0 0-3.362 1.261v1.122q.28.08.533.214a.75.75 0 1 1-.7 1.326 1.24 1.24 0 0 0-.583-.144.75.75 0 0 1-.75-.75zm8.779 1.47a.75.75 0 0 1 .508.93l-1.852 6.295a5.326 5.326 0 0 1-8.085 2.915.75.75 0 0 1 .84-1.243 3.826 3.826 0 0 0 5.807-2.095l1.85-6.295a.75.75 0 0 1 .932-.508m3.2-6.232a.75.75 0 0 1 0 1.06l-15 15a.75.75 0 1 1-1.061-1.06l15-15a.75.75 0 0 1 1.06 0M18.75 21a.75.75 0 0 0-1.5 0v.05a.75.75 0 0 0 1.5 0zM18 19.25c-.282 0-.541.093-.75.25a.75.75 0 0 1-.901-1.2A2.74 2.74 0 0 1 18 17.75c.619 0 1.192.205 1.651.55a.75.75 0 0 1-.901 1.2 1.24 1.24 0 0 0-.75-.25m-1.95-1.85a3.23 3.23 0 0 1 1.95-.65c.732 0 1.406.241 1.95.65a.75.75 0 0 0 .9-1.2 4.73 4.73 0 0 0-2.85-.95 4.73 4.73 0 0 0-2.85.95.75.75 0 0 0 .9 1.2" clipRule="evenodd" /></svg>;
});
export default SvgHearingLoopRadio;