{
  "version": 3,
  "sources": ["src/IconVolleyball/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 IconVolleyball: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconVolleyball\"><Path d=\"M11.3867 2.01855C7.25626 2.26865 3.80246 5.026 2.52734 8.78857C5.56064 6.96924 8.99064 5.71326 12.1949 5.42216C12.0939 4.18074 11.8188 3.00218 11.3867 2.01855Z\" fill=\"currentColor\"/><Path d=\"M2.01188 11.5082C2.00399 11.6712 2 11.8351 2 12C2 13.2635 2.23433 14.4722 2.6619 15.5852C3.61637 14.5085 4.8251 13.5593 6.11894 12.8123C7.7552 11.8677 9.60346 11.2027 11.3614 11.0375C11.825 10.0041 12.1132 8.74955 12.2055 7.43036C8.86747 7.77295 5.14278 9.301 2.01188 11.5082Z\" fill=\"currentColor\"/><Path d=\"M3.66406 17.5241C5.45508 20.2217 8.52041 22 12.0011 22C12.6988 22 13.3798 21.9286 14.0373 21.7926C10.9161 20.101 8.07621 17.7597 6.21015 15.1198C5.18434 15.8286 4.30027 16.657 3.66406 17.5241Z\" fill=\"currentColor\"/><Path d=\"M16.6488 20.8551C17.8557 20.22 18.9169 19.3454 19.7692 18.2944C18.3609 18.0057 16.9358 17.434 15.643 16.6877C14.0067 15.7431 12.5065 14.475 11.4846 13.0349C10.3586 13.1501 9.12908 13.5274 7.94141 14.1062C9.91819 16.8321 13.1471 19.2887 16.6488 20.8551Z\" fill=\"currentColor\"/><Path d=\"M20.9531 16.4589C21.623 15.1165 21.9998 13.6022 21.9998 12C21.9998 9.45053 21.0458 7.12391 19.4752 5.35767C19.5641 8.90249 18.9535 12.5253 17.6016 15.4576C18.7272 15.9906 19.8853 16.3414 20.9531 16.4589Z\" fill=\"currentColor\"/><Path d=\"M17.3586 3.55623C16.228 2.83702 14.9431 2.33866 13.5647 2.12189C14.0192 3.4862 14.2367 5.0068 14.2367 6.5C14.2367 8.38952 13.8885 10.3229 13.1523 11.928C13.8157 12.8466 14.7585 13.7238 15.8554 14.4634C17.2278 11.3905 17.7447 7.37164 17.3586 3.55623Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVolleyball;\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,gBAAykD,EAAzkD,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mMAAmM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+PAA+P,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8MAA8M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4PAA4P,KAAK,eAAc,CAAI,CACjlD,EAEc",
  "debugId": "2B5E7C5500DADA6164756E2164756E21",
  "names": []
}