{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconApples/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconApples: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconApples\"><Path d=\"M9.49845 1.61538L8.61384 1.14905L7.68118 2.91827L8.56579 3.3846C9.3655 3.80617 9.90584 4.2984 10.2776 4.87387C10.4001 5.06356 10.5084 5.26864 10.6026 5.49164C9.70158 5.28001 8.86144 5.22484 8.0848 5.32032C6.80048 5.47822 5.75034 6.04172 4.95026 6.87601C3.38685 8.50628 2.86455 11.0593 3.02893 13.4556C3.19452 15.8697 4.07135 18.3934 5.63497 20.0749C6.42662 20.9263 7.414 21.5804 8.58518 21.8571C9.64772 22.1082 10.797 22.0331 11.9988 21.5952C13.2008 22.0331 14.3504 22.1082 15.4131 21.8571C16.5845 21.5804 17.5721 20.9264 18.3639 20.075C19.928 18.3935 20.805 15.8698 20.9707 13.4557C21.1351 11.0592 20.6127 8.50621 19.0489 6.87594C18.2487 6.04166 17.1984 5.47821 15.9139 5.32033C14.9588 5.20293 13.9076 5.31328 12.7652 5.66223C12.5883 4.9859 12.3266 4.3599 11.9575 3.78861C11.3711 2.88086 10.5519 2.17072 9.49845 1.61538Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconApples;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAu6B,EAAv6B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,wzBAAwzB,KAAK,eAAc,CAAI,EAC/6B,EAEc",
  "debugId": "AAD9D24A4F70A6A064756E2164756E21",
  "names": []
}