{
  "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.0003 2.03613C14.2546 2.03613 16.1887 3.39492 17.0345 5.33594C19.1428 5.53983 21.034 6.96093 21.7308 9.10547C22.4274 11.2496 21.7319 13.5089 20.1468 14.9131C20.6044 16.9812 19.8383 19.2185 18.014 20.5439C16.19 21.869 13.8256 21.9067 12.0003 20.833C10.175 21.9066 7.81061 21.8691 5.98668 20.5439C4.16267 19.2185 3.39549 16.981 3.85289 14.9131C2.26839 13.5089 1.57348 11.2492 2.26988 9.10547C2.96655 6.96133 4.85748 5.54032 6.96519 5.33594C7.81089 3.39477 9.74613 2.0363 12.0003 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,gBAA+jB,EAA/jB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,2eAA2e,KAAK,eAAc,CAAI,GAGzjB",
  "debugId": "BE0A27DC73AF141964756E2164756E21",
  "names": []
}