{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBanana/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 IconBanana: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"banana, fruit\"><path d=\"M13.75 10.0833L16.0385 4.80183C16.3152 4.16327 16.9447 3.75 17.6407 3.75C18.5452 3.75 19.3073 4.44094 19.3323 5.34511C19.4072 8.05343 19.0343 10.6168 18.1409 13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M14.5361 12.9296C12.2325 12.3249 10.0993 11.8224 7.78815 12.4068L6.75 10.8379C9.35673 8.49775 15.4943 7.13805 14.5361 12.9296ZM14.5361 12.9296C16.9718 15.5916 17.25 17.5 16.25 20.25H18.1696C22.3702 17.1355 20.1733 11.3071 14.5361 12.9296Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M12.0833 12.25C10 14.9286 7.29454 16.401 3.75 16.5548V18.4681C8.1162 21.2443 12.7328 19.0793 16.25 16.0765\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconBanana;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA+sB,EAA/sB,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iPAAiP,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,YAAY,MAAK,CAAI,GAGzsB",
  "debugId": "3CFE2A92A92567BA64756E2164756E21",
  "names": []
}