"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 SvgSignLanguageTwoHandsFill = 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.258 6.435a.25.25 0 0 0-.085.15l-.036.217a.18.18 0 0 0 .035.141c.755.942.931 2.328.226 4.1l-.147.39-.204.389a.25.25 0 0 0 .161.357l.206.05c.713.165 1.342.271 1.94.271.83 0 1.672.31 2.279.9.374.363.66.844.77 1.393a.27.27 0 0 0 .286.222l2.085-.205a.25.25 0 0 0 .226-.25v-.955a2 2 0 0 0-.336-1.109l-.37-.554a2 2 0 0 0-.77-.68l-1.227-.613a.25.25 0 0 1-.072-.393l4.806-5.206a1.29 1.29 0 0 0-1.82-1.826L13 8l3.637-3.637a1.271 1.271 0 0 0-1.72-1.87zM8.49 11.562a.25.25 0 0 1-.277.13l-.082-.018A8 8 0 0 0 6.5 11.5c-.414 0-.809.046-1.181.127a.26.26 0 0 1-.319-.25V9.298a8 8 0 0 1 .41-2.53l.752-2.253c.183-.55.792-.833 1.33-.618a2.02 2.02 0 0 1 1.241 2.204l-.128.77c-.06.362.167.724.397 1.01.32.4.575 1.176-.002 2.619l-.12.318zM13 16.786c.496-.252.763-.695.901-1.155.12-.398.021-.76-.208-1.04a1 1 0 0 0-.106-.116l-.002-.002c-.303-.293-.757-.473-1.231-.473-1.09 0-2.16-.273-3.226-.545-.436-.11-.871-.222-1.307-.314A6.4 6.4 0 0 0 6.5 13c-2 0-3.5 1.5-3.5 2v5.529c0 .265.205.483.47.496 1.598.082 6.93.312 10.53-.025 1.697-.159 4.096-1.12 5.155-1.575.14-.06.284-.109.428-.157.229-.077.457-.153.663-.274a1.523 1.523 0 0 0-.917-2.83l-4.651.457a.26.26 0 0 0-.194.121 2.64 2.64 0 0 1-1.031.936c-.424.215-.912.322-1.453.322H8.75a.5.5 0 1 1 0-1H12c.408 0 .736-.08 1-.214" clipRule="evenodd" /></svg>;
});
export default SvgSignLanguageTwoHandsFill;