{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAvocado/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 IconAvocado: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"avocado\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.8102 2.95462C12.3505 3.12664 11.8877 3.31815 11.4262 3.5262C8.82987 4.69652 6.27279 6.39039 4.53542 8.08444C1.33168 11.2083 1.01571 16.5717 4.28733 19.7499L4.28865 19.7512L4.29011 19.7526C7.50877 22.9771 12.8666 22.6539 15.9407 19.4809C17.9221 17.4356 19.91 14.2506 21.0466 11.2027C21.6154 9.67747 21.9877 8.14282 22.0184 6.77243C22.049 5.40774 21.7404 4.10021 20.8218 3.18008C19.9034 2.2601 18.5981 1.95062 17.2354 1.98102C15.8669 2.01155 14.3341 2.38433 12.8102 2.95462ZM9.68729 17.8125C11.6203 17.8125 13.1873 16.2455 13.1873 14.3125C13.1873 12.3795 11.6203 10.8125 9.68729 10.8125C7.75429 10.8125 6.18729 12.3795 6.18729 14.3125C6.18729 16.2455 7.75429 17.8125 9.68729 17.8125Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAvocado;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAqyB,EAAryB,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,grBAAgrB,KAAK,eAAc,CAAI,GAG/xB",
  "debugId": "F5BDED4C61244C0964756E2164756E21",
  "names": []
}