{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTestflight/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 IconTestflight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconTestflight\"><Path d=\"M10.9752 9.39473L9.69409 1.5H14.3058L13.0248 9.44872M8.84596 20.9609C9.83244 21.31 10.894 21.5 11.9999 21.5C13.1058 21.5 14.1674 21.31 15.1539 20.9609M5.84909 4.82428C5.05388 5.50512 4.35879 6.33063 3.80585 7.28956C3.2529 8.24848 2.88642 9.26396 2.69514 10.2939M21.3047 10.2938C21.1134 9.26385 20.7469 8.24837 20.194 7.28944C19.641 6.33052 18.9459 5.505 18.1507 4.82416M10.2469 14.2102L4.05586 19.2679L1.75 15.2709L9.2688 12.4068M14.7779 12.4335L22.25 15.2705L19.9441 19.2676L13.7063 14.183M14.3058 12.0128C14.3058 13.2873 13.2734 14.3205 11.9999 14.3205C10.7265 14.3205 9.69409 13.2873 9.69409 12.0128C9.69409 10.7383 10.7265 9.70513 11.9999 9.70513C13.2734 9.70513 14.3058 10.7383 14.3058 12.0128Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconTestflight;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA40B,EAA50B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,8rBAA8rB,OAAO,eAAe,cAAc,SAAQ,CAAI,EACp1B,EAEc",
  "debugId": "B4DDAF6480FB2D0464756E2164756E21",
  "names": []
}