"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 SvgFlowerPetalFalling = 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="M11.833 4.215q.093.162.167.324.075-.162.167-.324c.476-.825 1.013-1.398 1.646-1.655.677-.275 1.311-.128 1.814.162s.947.766 1.048 1.49c.094.677-.135 1.428-.61 2.253a4 4 0 0 1-.194.302 4 4 0 0 1 .356-.017c.952 0 1.718.178 2.256.598.577.449.767 1.071.767 1.652 0 .58-.19 1.203-.767 1.652-.538.42-1.304.598-2.256.598-1.07 0-1.895-.444-2.444-.877-.355.46-.883.779-1.487.858.1.692.071 1.628-.463 2.554-.476.825-1.013 1.398-1.646 1.655-.677.275-1.311.128-1.814-.162s-.947-.767-1.048-1.49a2.7 2.7 0 0 1 .107-1.125q-.065.066-.125.134c-.379.427-.557.828-.557 1.203v6.5a.75.75 0 1 1-1.5 0V14c0-.875.418-1.616.935-2.198a6 6 0 0 1 .645-.622c-.525-.087-.966-.257-1.313-.528C4.94 10.203 4.75 9.581 4.75 9c0-.58.19-1.203.767-1.652.538-.42 1.304-.598 2.256-.598q.183 0 .356.017a4 4 0 0 1-.193-.302c-.476-.825-.705-1.576-.61-2.253.1-.724.544-1.2 1.047-1.49s1.137-.437 1.814-.162c.633.257 1.17.83 1.646 1.655m-2.21-.265c-.141-.058-.286-.053-.5.071s-.291.246-.312.398c-.028.198.021.599.424 1.296.327.566.827.878 1.28 1.051q.125.048.24.081a3 3 0 0 0 .05-.248c.076-.478.056-1.068-.271-1.634-.403-.697-.725-.94-.91-1.015m3.843 1.015c.403-.697.725-.94.91-1.015.142-.058.287-.053.501.071s.291.246.312.398c.028.198-.021.599-.424 1.296-.327.566-.827.878-1.28 1.051a3 3 0 0 1-.24.081 3 3 0 0 1-.05-.248c-.076-.478-.056-1.068.271-1.634M6.25 9c0-.248.068-.375.188-.469.159-.123.53-.281 1.335-.281.654 0 1.174.277 1.55.582q.105.085.19.168-.085.082-.19.168c-.376.305-.896.582-1.55.582-.805 0-1.176-.158-1.335-.281-.12-.094-.188-.221-.188-.469m5 0a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0m3.237 0q.085.082.19.168c.376.305.896.582 1.55.582.805 0 1.177-.158 1.335-.281.12-.094.188-.221.188-.469s-.068-.375-.188-.469c-.159-.123-.53-.281-1.335-.281-.654 0-1.174.277-1.55.582q-.105.085-.19.168m-3.973 2.234q.127-.048.24-.081.03.116.05.248c.077.478.057 1.067-.27 1.634-.403.697-.725.94-.91 1.015-.142.058-.287.052-.501-.071-.215-.124-.291-.246-.312-.398-.028-.198.021-.599.424-1.296.327-.567.827-.878 1.28-1.051m2.579 3.409a.75.75 0 0 1 .814 0c.11.07.211.151.31.235.17.142.392.352.615.627.445.548.918 1.392.918 2.495 0 .952-.178 1.718-.598 2.256-.449.577-1.071.767-1.652.767-.58 0-1.203-.19-1.652-.767-.42-.538-.598-1.304-.598-2.256 0-1.103.473-1.947.918-2.495.223-.275.446-.485.615-.627q.147-.127.31-.235m.24 1.807q.084-.105.167-.19.082.085.168.19c.305.376.582.896.582 1.55 0 .805-.158 1.176-.281 1.334-.094.121-.221.189-.469.189s-.375-.068-.469-.189c-.123-.158-.281-.529-.281-1.334 0-.654.277-1.174.582-1.55" clipRule="evenodd" /></svg>;
});
export default SvgFlowerPetalFalling;