"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 SvgSignLanguageTwoHands = 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="M15.931 2.98a.52.52 0 0 0-.53.086L9.827 7.783c.345.675.406 1.65-.128 2.989l-.117.31a.75.75 0 1 1-1.404-.53l.123-.324.003-.006c.51-1.276.214-1.746.113-1.872a3 3 0 0 1-.405-.635 1.67 1.67 0 0 1-.147-.968l.128-.77a1.27 1.27 0 0 0-.779-1.383.26.26 0 0 0-.34.158l-.752 2.254a7.3 7.3 0 0 0-.372 2.292v1.373a.75.75 0 0 1-1.5 0V9.298c0-.94.152-1.875.449-2.767l.751-2.254a1.76 1.76 0 0 1 2.321-1.076 2.77 2.77 0 0 1 1.72 2.901l4.94-4.18a2.022 2.022 0 0 1 3.195.82l.078-.071a2.04 2.04 0 0 1 2.878 2.888l-4.354 4.716.632.316c.428.215.793.537 1.059.935l.37.554c.3.452.461.982.461 1.525v.176a.75.75 0 0 1-1.5 0v-.176a1.25 1.25 0 0 0-.21-.693l-.37-.554a1.25 1.25 0 0 0-.48-.425l-1.525-.762a.75.75 0 0 1-.216-1.18l5.03-5.45a.54.54 0 0 0-.762-.765l-5.21 4.777A.75.75 0 0 1 12.47 7.47l3.636-3.637a.52.52 0 0 0-.175-.853m-12.2 12.144.002-.006zm.116-.174q-.071.09-.097.136v4.164h10.197l5.64-.806a.773.773 0 0 0-.185-1.533l-6.201.609q-.529.229-1.201.23H9a.75.75 0 0 1 0-1.5h3c.309 0 .517-.06.66-.133.255-.129.422-.365.523-.702.045-.149.013-.274-.12-.403a1.04 1.04 0 0 0-.71-.262c-.851 0-1.674-.15-2.448-.33-.355-.082-.678-.165-.992-.245a30 30 0 0 0-1.247-.3A5.6 5.6 0 0 0 6.5 13.75c-.813 0-1.541.307-2.07.677a3 3 0 0 0-.583.523m10.772.898-.008.026 4.644-.456a2.273 2.273 0 0 1 .544 4.511l-5.693.814a1 1 0 0 1-.106.007H3a.75.75 0 0 1-.75-.75v-5c0-.23.08-.431.149-.568.075-.149.175-.294.285-.43.221-.27.524-.55.886-.804.721-.505 1.743-.948 2.93-.948.532 0 1.029.063 1.476.157.439.093.914.214 1.371.33.314.08.62.158.898.222.733.17 1.426.291 2.109.291.653 0 1.301.245 1.756.687.472.46.739 1.15.51 1.911" clipRule="evenodd" /></svg>;
});
export default SvgSignLanguageTwoHands;