{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFlowerShape/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFlowerShape: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"flower-shape\"><path d=\"M12.0004 2.03613C14.1431 2.03613 15.9976 3.26401 16.9018 5.05078C16.9882 5.22165 17.1598 5.34543 17.349 5.375C19.3277 5.68275 21.0687 7.06773 21.7309 9.10547C22.3929 11.1432 21.7981 13.2863 20.3783 14.6982C20.2426 14.8333 20.177 15.0346 20.2074 15.2236C20.5263 17.2007 19.7476 19.2844 18.0141 20.5439C16.2807 21.8031 14.0583 21.9003 12.2768 20.9863C12.1063 20.899 11.8944 20.8989 11.724 20.9863C9.94242 21.9001 7.72003 21.8033 5.98672 20.5439C4.2534 19.2844 3.47451 17.2005 3.79336 15.2236C3.82385 15.0345 3.75834 14.8334 3.62246 14.6982C2.2029 13.2863 1.60804 11.143 2.26992 9.10547C2.932 7.06782 4.67325 5.6829 6.65176 5.375C6.84106 5.34557 7.01247 5.22169 7.09903 5.05078C8.00306 3.26404 9.85782 2.03631 12.0004 2.03613Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFlowerShape;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA0yB,EAA1yB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,stBAAstB,KAAK,eAAc,CAAI,GAGpyB",
  "debugId": "12636B1A1EE0B8DE64756E2164756E21",
  "names": []
}