"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 SvgFlowerPetals = 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 4.54a4 4 0 0 0-.167-.325c-.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 0 .194.302 4 4 0 0 0-.356-.017c-.952 0-1.718.178-2.256.598C4.94 7.797 4.75 8.419 4.75 9c0 .58.19 1.203.767 1.652.347.27.788.44 1.313.528-.23.193-.448.4-.645.622-.517.582-.935 1.323-.935 2.198v6.5a.75.75 0 1 0 1.5 0V14c0-.375.178-.776.557-1.203q.06-.068.125-.134a2.7 2.7 0 0 0-.107 1.125c.1.723.545 1.2 1.048 1.49s1.137.437 1.814.162c.633-.257 1.17-.83 1.646-1.655q.12-.21.209-.42.1.261.251.524c.476.824 1.013 1.398 1.646 1.655.677.275 1.311.128 1.814-.162s.947-.767 1.048-1.49c.094-.677-.135-1.429-.61-2.253a4 4 0 0 0-.267-.401q.149.012.303.012c.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-.598a4 4 0 0 0-.356.017q.101-.143.193-.302c.476-.825.705-1.576.61-2.253-.1-.724-.544-1.2-1.047-1.49s-1.137-.437-1.814-.162c-.633.257-1.17.83-1.646 1.655a4 4 0 0 0-.167.324M9.123 4.02c.214-.124.359-.129.5-.071.186.075.508.318.91 1.015.328.566.348 1.156.271 1.634a3 3 0 0 1-.05.248 3 3 0 0 1-.24-.08c-.452-.174-.952-.486-1.28-1.052-.402-.697-.45-1.098-.423-1.296.02-.152.097-.274.312-.398m5.254-.071c-.186.075-.508.318-.91 1.015-.328.566-.348 1.156-.272 1.634q.023.132.05.248.115-.033.24-.08c.453-.174.953-.486 1.28-1.052.403-.697.452-1.098.424-1.296-.02-.152-.098-.274-.312-.398s-.359-.129-.5-.071M6.438 8.53c-.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-.168a3 3 0 0 0-.19-.168c-.376-.305-.896-.582-1.55-.582-.805 0-1.176.158-1.335.281M11.25 9a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0m2.072 2.505q.021-.133.05-.248.113.033.24.08c.452.174.952.485 1.28 1.052.402.697.45 1.097.423 1.296-.02.151-.097.274-.312.397-.214.124-.358.13-.5.072-.186-.075-.508-.318-.91-1.015-.328-.567-.348-1.156-.271-1.634m1.355-2.337a3 3 0 0 1-.19-.168q.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-.582m-3.923 1.985a3 3 0 0 0-.24.08c-.452.174-.952.485-1.28 1.052-.402.697-.45 1.098-.423 1.296.02.152.097.274.312.398.214.123.359.129.5.071.186-.075.508-.318.91-1.015.328-.567.348-1.156.271-1.634a3 3 0 0 0-.05-.248" clipRule="evenodd" /></svg>;
});
export default SvgFlowerPetals;