"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 SvgHandShakeHeart = 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="M12.006 5.297q.123-.089.271-.187a8 8 0 0 1 1.991-.963c1.689-.53 3.942-.517 6.04 1.58 1.559 1.559 1.929 3.27 1.743 4.79-.18 1.48-.88 2.74-1.397 3.503a1.52 1.52 0 0 1-1.22.684l-.01.087c-.064.48-.289.949-.707 1.367s-.886.642-1.366.707a2.3 2.3 0 0 1-.383.019q.008.185-.018.382c-.065.48-.29.949-.707 1.367-.418.418-.887.642-1.367.707a2 2 0 0 1-.383.018q.008.186-.018.383c-.065.48-.29.948-.707 1.367-.418.417-.887.642-1.367.707a2.46 2.46 0 0 1-1.227-.164 3.5 3.5 0 0 1-1.087-.69l-.02-.019-.007-.007-.003-.002v-.001s-.002-.001.529-.532l-.53.53-6.365-6.363-.014-.016-.003-.002-.004-.005-.012-.013-.04-.043-.13-.155a8 8 0 0 1-.418-.559 7.8 7.8 0 0 1-.98-1.98c-.264-.827-.405-1.812-.198-2.87.208-1.066.759-2.155 1.8-3.196 1.04-1.04 2.13-1.592 3.195-1.8 1.059-.207 2.043-.066 2.87.2a7.8 7.8 0 0 1 2.25 1.17M10.93 6.371l-.035-.024A6.3 6.3 0 0 0 9.3 5.556c-.646-.208-1.37-.303-2.124-.156-.748.146-1.574.54-2.423 1.389-.848.848-1.242 1.675-1.388 2.422-.147.755-.052 1.478.155 2.124.208.648.523 1.201.792 1.596a6 6 0 0 0 .43.562l.021.024 6.351 6.35.004.003.028.026q.042.039.13.105c.117.087.273.186.446.253a1 1 0 0 0 .48.074c.133-.018.305-.08.506-.281.2-.2.263-.373.281-.507a.97.97 0 0 0-.073-.48 2 2 0 0 0-.384-.604l-.004-.003-1.057-1.058a.75.75 0 1 1 1.06-1.06l1.058 1.057.003.003.029.027a2.1 2.1 0 0 0 .576.357.97.97 0 0 0 .48.074c.133-.018.305-.08.506-.281.2-.2.263-.373.281-.506a1 1 0 0 0-.073-.48 2 2 0 0 0-.359-.576q-.018-.021-.026-.029l-.003-.003-1.032-1.033a.75.75 0 0 1 1.06-1.06l1.033 1.033.003.003.029.026q.043.038.129.104c.117.087.274.186.447.254a1 1 0 0 0 .48.074c.133-.018.305-.081.506-.282.2-.2.263-.373.281-.506a1 1 0 0 0-.074-.48 2 2 0 0 0-.358-.576l-.015-.017-.01-.011-.004-.004-1.411-1.411-.005-.005-1.586-1.586-1.591 1.59a2.75 2.75 0 0 1-3.89 0l-1.06-1.06a.75.75 0 0 1-.046-1.01zm7.613 6.075v.002l.706.704a.16.16 0 0 0 .118.054q.019-.002.025-.006a.1.1 0 0 0 .021-.022c.456-.672 1.011-1.7 1.15-2.842.135-1.102-.11-2.343-1.314-3.548-1.624-1.623-3.26-1.61-4.53-1.21a6.5 6.5 0 0 0-1.612.782 6 6 0 0 0-.567.423l-3.06 3.672.576.576a1.25 1.25 0 0 0 1.768 0l2.121-2.121a.75.75 0 0 1 1.061 0z" clipRule="evenodd" /></svg>;
});
export default SvgHandShakeHeart;