{
  "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=\"round-filled-radius-1-stroke-1.5-IconVolleyball\"><Path d=\"M11.6515 2.00586C7.27106 2.15519 3.60554 5.12189 2.41016 9.15077C5.55397 7.21976 9.14581 5.90084 12.4599 5.65073C12.3774 4.33313 12.1032 3.0679 11.6515 2.00586Z\" fill=\"currentColor\"/><Path d=\"M2.03242 11.1888C2.01094 11.4564 2 11.7269 2 11.9999C2 13.3626 2.27257 14.6617 2.76616 15.8455C3.71142 14.7543 4.9301 13.7873 6.24394 13.0288C7.90215 12.0715 9.77208 11.4115 11.5277 11.274C12.0779 10.1076 12.3998 8.66019 12.4722 7.15454C9.06581 7.43601 5.24716 8.96122 2.03242 11.1888Z\" fill=\"currentColor\"/><Path d=\"M3.51953 17.2996C5.28714 20.1226 8.42497 22 12.0013 22C12.8315 22 13.6382 21.8988 14.4095 21.7081C11.1363 19.9797 8.15893 17.5299 6.27463 14.7743C5.17349 15.5052 4.21384 16.3763 3.51953 17.2996Z\" fill=\"currentColor\"/><Path d=\"M16.3639 21C17.7745 20.3147 18.9998 19.3076 19.9443 18.074C18.5279 17.8006 17.0823 17.2291 15.7695 16.4712C14.1112 15.5139 12.6045 14.2246 11.6078 12.7725C10.3231 12.8794 8.90966 13.3238 7.57031 14.0132C9.52712 16.8301 12.8015 19.3704 16.3639 21Z\" fill=\"currentColor\"/><Path d=\"M20.83 16.6963C21.5762 15.2961 21.9992 13.6974 21.9992 11.9999C21.9992 9.31341 20.9398 6.87432 19.2159 5.07764C19.3484 8.77282 18.7125 12.5686 17.2695 15.5747C18.4518 16.1617 19.6845 16.5566 20.83 16.6963Z\" fill=\"currentColor\"/><Path d=\"M17.6299 3.73299C16.362 2.86814 14.8849 2.28735 13.2901 2.08221C13.7618 3.44579 13.9896 4.98378 13.9896 6.49998C13.9896 8.41487 13.6262 10.3645 12.8672 11.9537C13.6025 13.014 14.6957 14.0168 15.9641 14.8324C17.4248 11.7314 17.9915 7.63197 17.6299 3.73299Z\" 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,gBAAwlD,EAAxlD,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gSAAgS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yPAAyP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kQAAkQ,KAAK,eAAc,CAAI,CAChmD,EAEc",
  "debugId": "28584A389258289864756E2164756E21",
  "names": []
}