{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRocket2/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 IconRocket2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRocket2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.6455 2.23633C12.8481 2.40751 13.0438 2.58031 13.2344 2.75293C15.9036 5.17085 17.4008 7.73006 17.8516 10.457C17.9093 10.8062 17.9519 11.1579 17.9756 11.5127C18.183 14.6252 17.0748 17.7882 15.1709 21C15.0671 21.1751 14.9619 21.351 14.8535 21.5264L14.5596 22H9.44043L9.14648 21.5264C7.04876 18.1338 5.80565 14.7949 6.02441 11.5127C6.04806 11.158 6.08972 10.8062 6.14746 10.457C6.59897 7.72547 8.10063 5.16173 10.7783 2.74023C10.9647 2.57174 11.1567 2.40345 11.3545 2.23633L12 1.69043L12.6455 2.23633ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10Z\" fill=\"currentColor\"/><Path d=\"M21 14.667V21H16.9023C18.4094 18.2872 19.4076 15.4954 19.4932 12.6582L21 14.667Z\" fill=\"currentColor\"/><Path d=\"M4.50586 12.6572C4.59123 15.4947 5.59046 18.2868 7.09766 21H3V14.667L4.50586 12.6572Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRocket2;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA0+B,EAA1+B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+mBAA+mB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,CAAI,EACl/B,EAEc",
  "debugId": "E81F73F5EF2FDE3764756E2164756E21",
  "names": []
}