{
  "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=\"M7.49071 6.06036C8.10819 4.15992 9.89366 2.78613 12 2.78613C14.1063 2.78613 15.8918 4.15992 16.5093 6.06037C18.5075 6.06035 20.3658 7.33391 21.0167 9.33716C21.6676 11.3404 20.9128 13.463 19.2962 14.6375C19.9137 16.538 19.2767 18.6989 17.5726 19.9369C15.8686 21.175 13.6166 21.1131 12 19.9385C10.3834 21.1131 8.13143 21.175 6.42737 19.9369C4.7233 18.6989 4.08632 16.538 4.70382 14.6375C3.0872 13.463 2.3324 11.3404 2.98329 9.33715C3.63418 7.33391 5.49247 6.06035 7.49071 6.06036Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></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,gBAAykB,EAAzkB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,ieAAie,OAAO,eAAe,YAAY,MAAK,CAAI,GAGnkB",
  "debugId": "3B5B2BA6BF37EAC364756E2164756E21",
  "names": []
}