{
  "version": 3,
  "sources": ["src/IconTestflight/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconTestflight\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.4905 9.63311C13.5036 9.59997 13.5134 9.56491 13.5193 9.52827L14.4336 3.85478C14.6749 2.35751 13.5186 1 12.0021 1C10.4844 1 9.32784 2.35935 9.57093 3.85742L10.4825 9.47482C10.491 9.52719 10.5073 9.57633 10.5301 9.62123C9.7556 10.0992 9.23088 10.9432 9.19671 11.912C9.16149 11.9172 9.1263 11.9263 9.09166 11.9395L3.7263 13.9833C2.30905 14.5232 1.71141 16.2031 2.46925 17.5168C3.22831 18.8326 4.98565 19.1547 6.16202 18.1936L10.5641 14.5974C10.605 14.564 10.6392 14.5255 10.6667 14.4835C11.0634 14.6984 11.5178 14.8205 12.0008 14.8205C12.4759 14.8205 12.9233 14.7024 13.3155 14.4939C13.3375 14.5216 13.3627 14.5473 13.3913 14.5705L17.8405 18.1972C19.0171 19.1563 20.7726 18.8335 21.5312 17.5186C22.2896 16.204 21.6905 14.5229 20.2716 13.9842L14.9562 11.9661C14.9066 11.9472 14.8559 11.9368 14.8056 11.9341C14.7789 10.9641 14.2604 10.1167 13.4905 9.63311ZM17.7718 4.49898C17.9514 4.28922 18.267 4.26476 18.4768 4.44435C19.3145 5.1616 20.0463 6.03094 20.628 7.03968C21.2096 8.04842 21.5956 9.11758 21.7971 10.2025C21.8475 10.474 21.6683 10.735 21.3968 10.7854C21.1253 10.8358 20.8644 10.6566 20.8139 10.3851C20.6329 9.41011 20.2859 8.44831 19.7617 7.53921C19.2374 6.63011 18.5791 5.8484 17.8264 5.20397C17.6166 5.02438 17.5922 4.70874 17.7718 4.49898ZM6.22974 4.49909C6.40934 4.70886 6.38488 5.02449 6.17512 5.20409C5.42244 5.84852 4.76405 6.63022 4.23984 7.53932C3.71562 8.44843 3.36865 9.41022 3.18757 10.3852C3.13715 10.6567 2.87618 10.8359 2.60468 10.7855C2.33318 10.7351 2.15396 10.4741 2.20439 10.2026C2.40588 9.1177 2.79187 8.04853 3.37354 7.03979C3.95521 6.03105 4.68702 5.16172 5.52475 4.44447C5.73451 4.26487 6.05015 4.28933 6.22974 4.49909ZM12.0008 10.2051C11.0038 10.2051 10.1949 11.0141 10.1949 12.0128C10.1949 13.0116 11.0038 13.8205 12.0008 13.8205C12.9978 13.8205 13.8066 13.0116 13.8066 12.0128C13.8066 11.0141 12.9978 10.2051 12.0008 10.2051ZM8.37545 20.7941C8.46757 20.5338 8.75329 20.3974 9.01361 20.4896C9.94728 20.82 10.9525 21 12.0008 21C13.049 21 14.0542 20.82 14.9879 20.4896C15.2482 20.3974 15.5339 20.5338 15.6261 20.7941C15.7182 21.0544 15.5818 21.3402 15.3215 21.4323C14.2822 21.8001 13.1643 22 12.0008 22C10.8372 22 9.7193 21.8001 8.67999 21.4323C8.41967 21.3402 8.28332 21.0544 8.37545 20.7941Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTestflight;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAA20E,EAA30E,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mrEAAmrE,KAAK,eAAc,CAAI,CACn1E,EAEc",
  "debugId": "2DA2FF817CAEC4AD64756E2164756E21",
  "names": []
}