"use client";
import React, { forwardRef, type Ref, type SVGProps } 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" d="M10.595 11.364c.903-.352 1.868.135 2.198 1.009.305.806 0 1.749-.769 2.184l-1.968 1.115a.13.13 0 0 0-.066.072.23.23 0 0 0-.004.13.2.2 0 0 0 .051.097c.009.008.022.018.06.018h4.074l4.335-1.436c.89-.294 1.807.198 2.127 1.044.313.83-.018 1.803-.826 2.224l-5.279 2.749c-.226.117-.476.18-.732.18H5A1.75 1.75 0 0 1 3.25 19v-2.763c0-1.952 1.557-3.51 3.405-3.51.217 0 .516-.067.802-.155.134-.042.25-.083.333-.114l.095-.037q.015-.006.022-.01l.004-.001.01-.004.01-.004zm.545 1.397L8.477 13.8l-.03.013-.126.049c-.104.04-.25.092-.42.144-.324.1-.798.222-1.246.222-.992 0-1.905.859-1.905 2.01V19c0 .138.112.25.25.25h8.796a.1.1 0 0 0 .04-.011l5.277-2.748c.098-.051.176-.204.117-.363-.056-.146-.177-.175-.253-.15l-4.448 1.473-.114.038h-4.318c-.865 0-1.417-.627-1.57-1.267-.152-.638.052-1.436.79-1.854l1.967-1.116c.092-.052.162-.199.106-.35a.24.24 0 0 0-.119-.136.16.16 0 0 0-.131-.005M9.266 2.488c.23-.032.472 0 .695.096l.095.044.184.106c.903.568 1.498 1.668.961 2.727l-.419.825a.25.25 0 0 0-.021.165l.012.057 5.119-2.954c.544-.314 1.12-.38 1.641-.221.507.154.903.504 1.145.921q.136.239.209.512c.409-.136.823-.142 1.207-.025a2 2 0 0 1 1.144.923c.241.417.346.936.227 1.452-.09.39-.303.745-.626 1.031q.2.2.339.438c.241.417.346.937.226 1.453-.123.53-.468.996-1.012 1.31l-4.2 2.425a.75.75 0 0 1-.75-1.299l4.2-2.425c.213-.123.28-.256.301-.35a.5.5 0 0 0-.064-.364.5.5 0 0 0-.283-.239c-.093-.028-.241-.036-.454.087l-4.27 2.465a.75.75 0 0 1-.75-1.299l1.241-.717 4.34-2.504c.213-.124.28-.257.3-.351a.5.5 0 0 0-.064-.363.5.5 0 0 0-.283-.239c-.092-.028-.24-.037-.454.086l-4.34 2.507-.008.003-.948.548a.75.75 0 0 1-.75-1.299l.95-.549.005-.003 3.033-1.75c.211-.124.278-.256.3-.35a.5.5 0 0 0-.065-.364.5.5 0 0 0-.283-.238c-.093-.028-.241-.036-.454.087l-5.567 3.213c.04.314.051.601.02.87a2.38 2.38 0 0 1-.742 1.487l-.226.218a.75.75 0 0 1-1.04-1.083l.226-.216a.89.89 0 0 0 .292-.575c.022-.19.008-.472-.084-.928L9.293 6.76a1.75 1.75 0 0 1 .151-1.152l.42-.824c.043-.087.055-.202-.011-.349a1 1 0 0 0-.32-.37l-1.4 1.948q-.096.135-.154.292l-1.422 3.822c-.052.139-.078.287-.078.435V11A.75.75 0 1 1 4.98 11v-.439c0-.327.057-.652.171-.959l1.422-3.821q.128-.345.343-.643c.344-.48 1.172-1.634 1.582-2.203l.081-.1c.2-.215.46-.317.687-.348" /></svg>;
});
export default SvgSignLanguageTwoHands;