{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconApples/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 IconApples: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"apples, fruit\"><path d=\"M9.28805 1.58598C8.9213 1.39344 8.46791 1.53466 8.27537 1.90141C8.08283 2.26815 8.22405 2.72154 8.5908 2.91408C9.45139 3.36589 10.0476 3.90189 10.4608 4.53893C10.6872 4.8879 10.8672 5.28044 11.0033 5.7266C8.37666 4.96411 6.32437 5.49114 4.93407 6.93496C3.39784 8.53031 2.86242 11.061 3.02924 13.483C3.19697 15.9183 4.08532 18.4441 5.64312 20.1124C6.4294 20.9545 7.40072 21.5919 8.54386 21.8609C9.6075 22.1112 10.7695 22.0305 11.9988 21.5653C13.2284 22.0305 14.3906 22.1112 15.4545 21.8609C16.5979 21.5919 17.5694 20.9546 18.3559 20.1125C19.9141 18.4441 20.8027 15.9183 20.9705 13.4831C21.1373 11.061 20.6018 8.53026 19.0652 6.93491C17.6034 5.41718 15.41 4.91253 12.5866 5.85399C12.4117 5.07108 12.1327 4.35996 11.7193 3.72263C11.1444 2.83635 10.3385 2.13749 9.28805 1.58598Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconApples;\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,gBAA81B,EAA91B,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,ywBAAywB,KAAK,eAAc,CAAI,GAGx1B",
  "debugId": "70199CABE750AE6664756E2164756E21",
  "names": []
}