"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 SvgFlowerPetalFallingFill = 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="M13.406 10.042a1.75 1.75 0 1 0-1.209.697q.052.195.089.426c.111.698.099 1.665-.453 2.62-.476.825-1.013 1.398-1.646 1.655-.677.275-1.31.128-1.814-.162-.503-.29-.947-.767-1.048-1.49a2.7 2.7 0 0 1 .108-1.126q-.066.067-.126.135c-.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-.598a4 4 0 0 1 .357.017 4 4 0 0 1-.194-.302c-.476-.825-.705-1.576-.61-2.253.1-.724.544-1.2 1.047-1.49s1.137-.437 1.815-.162c.632.257 1.17.83 1.645 1.655q.094.162.167.324.075-.162.167-.324c.476-.825 1.013-1.398 1.646-1.655.677-.275 1.31-.128 1.814.162.503.29.947.766 1.048 1.49.094.677-.135 1.428-.61 2.253a4 4 0 0 1-.195.302q.174-.017.357-.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.103 0-1.946-.473-2.495-.918a5 5 0 0 1-.326-.29m.811 4.836a4 4 0 0 0-.31-.235.75.75 0 0 0-.814 0l-.1.07a4.681 4.681 0 0 0-.826.793c-.444.547-.917 1.39-.917 2.494 0 .952.178 1.717.598 2.256.449.577 1.071.767 1.652.767.58 0 1.203-.19 1.652-.767.42-.539.598-1.304.598-2.256 0-1.103-.473-1.947-.918-2.495a4.7 4.7 0 0 0-.615-.627M11.25 9a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0" clipRule="evenodd" /></svg>;
});
export default SvgFlowerPetalFallingFill;