{
  "version": 3,
  "sources": ["src/IconFrisbee/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 IconFrisbee: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFrisbee\"><Path d=\"M11.511 4.00525C11.7871 3.99921 12.006 3.7705 11.9999 3.49443C11.9939 3.21835 11.7652 2.99945 11.4891 3.00549C7.40874 3.09484 3.73813 4.25133 1.20807 6.07122C0.983898 6.23246 0.932888 6.54491 1.09414 6.76908C1.25539 6.99326 1.56783 7.04427 1.792 6.88302C4.12686 5.20355 7.59056 4.0911 11.511 4.00525Z\" fill=\"currentColor\"/><Path d=\"M22.792 17.9286C23.0162 17.7674 23.0672 17.4549 22.9059 17.2307C22.7447 17.0066 22.4322 16.9556 22.2081 17.1168C19.8732 18.7963 16.4095 19.9087 12.4891 19.9946C12.213 20.0006 11.9941 20.2293 12.0002 20.5054C12.0062 20.7815 12.2349 21.0004 12.511 20.9943C16.5913 20.905 20.2619 19.7485 22.792 17.9286Z\" fill=\"currentColor\"/><Path d=\"M6.22357 7.25988C4.74848 8.04081 4.00004 9.0338 4.00004 9.99997C4.00004 10.9661 4.74848 11.9591 6.22357 12.7401C7.67629 13.5091 9.71773 14 12 14C14.2823 14 16.3238 13.5091 17.7765 12.7401C19.2516 11.9591 20 10.9661 20 9.99997C20 9.0338 19.2516 8.04081 17.7765 7.25988C16.3371 6.49784 14.3197 6.00898 12.0627 6.00009L12 6L11.9374 6.00009C9.68041 6.00898 7.66299 6.49784 6.22357 7.25988Z\" fill=\"currentColor\"/><Path d=\"M21 9.99997C21 9.25754 20.7243 8.57771 20.2554 7.97766C21.8201 8.93389 23 10.2955 23 12C23 13.9635 21.4343 15.472 19.5183 16.43C17.5426 17.4178 14.883 18 12 18C9.11703 18 6.45752 17.4178 4.48176 16.43C2.56581 15.472 1.00004 13.9635 1.00004 12C1.00004 10.2955 2.17997 8.93389 3.74463 7.97765C3.27576 8.5777 3.00004 9.25754 3.00004 9.99997C3.00004 11.5191 4.15438 12.7761 5.75569 13.6238C7.37936 14.4834 9.58792 15 12 15C14.4122 15 16.6207 14.4834 18.2444 13.6238C19.8457 12.7761 21 11.5191 21 9.99997Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFrisbee;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA+pD,EAA/pD,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,+SAA+S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+SAA+S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oYAAoY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ufAAuf,KAAK,eAAc,CAAI,CACvqD,EAEc",
  "debugId": "651A1E2CA036A13A64756E2164756E21",
  "names": []
}