{
  "version": 3,
  "sources": ["src/IconBasketball/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 IconBasketball: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBasketball\"><Path d=\"M11.5039 2.0127V11.5004H7.99162C7.8729 9.09084 6.9009 6.90476 5.37224 5.23958C5.25282 5.1095 5.13 4.98259 5.00391 4.85898C6.6967 3.19951 8.97699 2.13713 11.5039 2.0127Z\" fill=\"currentColor\"/><Path d=\"M12.5039 2.0127V11.5004H16.0162C16.1349 9.09084 17.1069 6.90476 18.6356 5.23958C18.755 5.1095 18.8778 4.98259 19.0039 4.85899C17.3111 3.19951 15.0308 2.13713 12.5039 2.0127Z\" fill=\"currentColor\"/><Path d=\"M19.6807 5.59402C19.5746 5.69871 19.4711 5.80602 19.3703 5.91585C18.0045 7.40368 17.1332 9.35127 17.0156 11.5004H21.9897C21.8793 9.25799 21.0302 7.20979 19.6807 5.59402Z\" fill=\"currentColor\"/><Path d=\"M21.9897 12.5004H17.0156C17.1332 14.6496 18.0045 16.5972 19.3703 18.085C19.4711 18.1948 19.5746 18.3021 19.6807 18.4068C21.0302 16.791 21.8793 14.7429 21.9897 12.5004Z\" fill=\"currentColor\"/><Path d=\"M19.0039 19.1419C18.8778 19.0183 18.755 18.8913 18.6356 18.7613C17.1069 17.0961 16.1349 14.91 16.0162 12.5004H12.5039V21.9881C15.0308 21.8637 17.3111 20.8013 19.0039 19.1419Z\" fill=\"currentColor\"/><Path d=\"M11.5039 21.9881V12.5004H7.99162C7.8729 14.91 6.9009 17.0961 5.37224 18.7613C5.25282 18.8913 5.13 19.0183 5.00391 19.1419C6.6967 20.8013 8.97698 21.8637 11.5039 21.9881Z\" fill=\"currentColor\"/><Path d=\"M4.3246 18.4068C4.43069 18.3021 4.53419 18.1948 4.63501 18.085C6.00087 16.5972 6.87209 14.6496 6.9897 12.5004H2.01562C2.12605 14.7429 2.97511 16.7911 4.3246 18.4068Z\" fill=\"currentColor\"/><Path d=\"M2.01562 11.5004C2.12605 9.25799 2.97511 7.20979 4.3246 5.59402C4.43069 5.69872 4.53419 5.80602 4.63501 5.91585C6.00087 7.40368 6.87209 9.35128 6.9897 11.5004H2.01562Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBasketball;\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,gBAA6pD,EAA7pD,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iLAAiL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wKAAwK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,CAAI,CACrqD,EAEc",
  "debugId": "8FC6C1156B4E28D864756E2164756E21",
  "names": []
}