{
  "version": 3,
  "sources": ["src/IconFrisbeeGolf/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 IconFrisbeeGolf: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFrisbeeGolf\"><Path d=\"M2.77203 5.1689C2.32524 8.85922 2.98668 12.574 5.13286 15.507C5.04683 15.8206 5 16.1517 5 16.5C5 16.6708 5.01127 16.8374 5.0329 17H2.50006C2.22391 17 2.00006 16.7761 2.00006 16.5C2.00006 16.2238 2.22391 16 2.50006 16H4.25523C1.98185 12.8328 1.3153 8.88574 1.77984 5.04878L1.81793 4.82417C2.06112 3.72898 3.06753 2.99995 4.16949 2.99995H6.57543C6.5847 2.99969 6.59401 2.99969 6.60335 2.99995H10.7571C10.7665 2.99969 10.7758 2.99969 10.785 2.99995H13.0767C14.2442 2.99995 15.3027 3.81796 15.4615 5.02534L15.5181 5.498C15.7132 7.29525 15.6907 9.24005 15.3283 11.0565C14.9965 11.028 14.6596 11.0101 14.3186 11.0032C14.6836 9.27346 14.717 7.38103 14.525 5.60933L14.4703 5.1562C14.3834 4.49547 13.7935 3.99995 13.0767 3.99995H11.383C11.8137 6.32928 11.806 8.886 11.1662 11.2647C10.7816 11.339 10.4078 11.4282 10.0469 11.5315C10.7912 9.17714 10.8414 6.5625 10.398 4.1728L10.3627 3.99995H6.9959C6.44992 6.77969 6.57247 9.8766 7.6771 12.5247C7.38529 12.6969 7.10183 12.889 6.8353 13.1007C5.58807 10.2479 5.43408 6.93988 5.9776 3.99995H4.16949C3.49189 3.99995 2.92774 4.442 2.79351 5.04585L2.77203 5.1689Z\" fill=\"currentColor\"/><Path d=\"M19.5 15C19.5 14.2851 18.9992 13.5455 17.9902 12.957C16.9936 12.3757 15.5841 12 14 12C12.4159 12 11.0064 12.3757 10.0098 12.957C9.00084 13.5455 8.5 14.2851 8.5 15C8.5 15.7148 9.00084 16.4544 10.0098 17.0429C11.0064 17.6242 12.4159 18 14 18C15.5841 18 16.9936 17.6242 17.9902 17.0429C18.9992 16.4544 19.5 15.7148 19.5 15Z\" fill=\"currentColor\"/><Path d=\"M7.5 15C7.5 14.4509 7.67129 13.944 7.9659 13.4907C6.87142 14.1869 6 15.1961 6 16.5C6 18.0493 7.23046 19.1826 8.60352 19.8691C10.0364 20.5854 11.9456 21 14 21C16.0544 21 17.9637 20.5854 19.3965 19.8691C20.7695 19.1826 22 18.0493 22 16.5C22 15.1961 21.1286 14.1869 20.0341 13.4907C20.3287 13.944 20.5 14.4509 20.5 15C20.5 16.2181 19.6568 17.229 18.4941 17.9072C17.3193 18.5924 15.7292 19 14 19C12.2708 19 10.6807 18.5924 9.50586 17.9072C8.34322 17.229 7.5 16.2181 7.5 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFrisbeeGolf;\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,EAAoE,EAAM,KAAK,CAAC,IACpF,gBAAkhE,EAAlhE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,0kCAA0kC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mUAAmU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wdAAwd,KAAK,eAAc,CAAI,CAC1hE,EAEc",
  "debugId": "44E450592412704464756E2164756E21",
  "names": []
}