{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAppleNewton/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 IconAppleNewton: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAppleNewton\"><Path d=\"M12.5804 3.19442C12.8889 3.20017 13.1958 3.23139 13.5 3.28558V4.96447L9.96447 8.5L16 14.5355L20.7443 9.79127C21.1861 10.8338 21.4588 11.9224 21.4957 12.9882C21.536 14.1512 21.2948 15.3126 20.6537 16.3366C20.0717 17.2661 19.1955 18.0256 18.0239 18.566C17.4753 19.7271 16.706 20.5927 15.7687 21.1664C14.7367 21.798 13.5678 22.0352 12.3975 21.9957C10.0846 21.9176 7.65956 20.7618 5.81918 19.1769C3.99356 17.6047 2.54394 15.4329 2.50099 13.1711C2.46092 11.0606 3.63759 9.18619 6.13262 7.86767C5.77849 7.26675 5.52016 6.64106 5.37717 5.97771C5.14916 4.91993 5.22976 3.83739 5.58832 2.69938L5.88882 1.74561L7.79638 2.34662L7.49587 3.3004C7.22414 4.16285 7.18869 4.89024 7.33226 5.55627C7.38096 5.78217 7.45198 6.00902 7.54728 6.23883C8.85872 4.1398 10.6245 3.15791 12.5804 3.19442Z\" fill=\"currentColor\"/><Path d=\"M17 3V8.58579L18.5 7.08579L19.9142 8.5L16 12.4142L12.0858 8.5L13.5 7.08579L15 8.58579V3H17Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAppleNewton;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAy/B,EAAz/B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,0wBAA0wB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,EACjgC,EAEc",
  "debugId": "A36C70238387572564756E2164756E21",
  "names": []
}