{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFrisbeeGolf/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "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=\"square-filled-radius-0-stroke-2-IconFrisbeeGolf\"><Path d=\"M15.809 3L15.9779 3.79199C16.4134 5.83599 16.5785 8.32345 16.1919 10.6527C15.5441 10.5607 14.873 10.5091 14.1873 10.5011C14.5084 8.7229 14.4587 6.75965 14.1693 5H12.1654C12.3909 6.81489 12.374 8.76056 12.0192 10.6242C11.2693 10.7197 10.5489 10.869 9.87143 11.0668C10.3693 9.13834 10.4257 7.00035 10.1479 5H7.85197C7.54535 7.20726 7.64587 9.57803 8.29451 11.6506C8.05079 11.7624 7.81605 11.8816 7.59119 12.0078C7.22702 12.2123 6.8713 12.4464 6.53842 12.7098C5.67254 10.2629 5.52235 7.50482 5.83341 5H3.83634C3.33953 8.18438 3.74404 11.393 5.30381 14.0018C4.80974 14.7141 4.49951 15.5481 4.49951 16.5C4.49951 16.6705 4.50946 16.8371 4.52863 17H1.99943V15H3.56974C1.57621 11.6494 1.25119 7.57887 2.01993 3.80078L2.18204 3H15.809Z\" fill=\"currentColor\"/><Path d=\"M19.3745 14.4999C19.3745 13.8481 18.9168 13.1427 17.9272 12.5654L17.8798 12.538C16.7224 12.1911 15.3944 12 13.9995 12C12.6046 12 11.2766 12.1911 10.1192 12.538L10.0718 12.5654C9.0822 13.1427 8.62451 13.8481 8.62451 14.4999C8.62451 15.1518 9.0822 15.8572 10.0718 16.4345C11.0461 17.0029 12.4334 17.3749 13.9995 17.3749C15.5656 17.3749 16.9529 17.0029 17.9272 16.4345C18.9168 15.8572 19.3745 15.1518 19.3745 14.4999Z\" fill=\"currentColor\"/><Path d=\"M5.99951 16.5C5.99951 15.4085 6.61024 14.5235 7.45128 13.8557C7.40113 14.0629 7.37451 14.2779 7.37451 14.4999C7.37451 15.781 8.26008 16.8252 9.44189 17.5146C10.6391 18.213 12.2519 18.6249 13.9995 18.6249C15.7471 18.6249 17.3599 18.213 18.5571 17.5146C19.7389 16.8252 20.6245 15.781 20.6245 14.4999C20.6245 14.2779 20.5979 14.0629 20.5477 13.8557C21.3888 14.5235 21.9995 15.4085 21.9995 16.5C21.9995 18.0493 20.7691 19.1826 19.396 19.8691C17.9632 20.5855 16.0539 21 13.9995 21C11.9451 21 10.0359 20.5855 8.60303 19.8691C7.22997 19.1826 5.99951 18.0493 5.99951 16.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFrisbeeGolf;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA+1D,EAA/1D,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,ytBAAytB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iaAAia,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ujBAAujB,KAAK,eAAc,CAAI,EACv2D,EAEc",
  "debugId": "8111D2D5B35F5E7964756E2164756E21",
  "names": []
}