{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSoccer/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 IconSoccer: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSoccer\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.3145 4.7165L12 7.12461L8.68552 4.7165C7.70018 5.16572 6.82112 5.80955 6.09797 6.59935L7.36323 10.4934L4.05004 12.9006C4.17282 13.9979 4.51741 15.0274 5.03811 15.9443H9.13432L10.4002 19.8402C10.9164 19.9449 11.4513 20 12 20C12.5487 20 13.0836 19.9449 13.5998 19.8402L14.8657 15.9443H18.9619C19.4826 15.0274 19.8272 13.9979 19.95 12.9006L16.6368 10.4934L17.902 6.59935C17.1789 5.80955 16.2998 5.16572 15.3145 4.7165ZM8.46638 2.64253C9.56638 2.22695 10.7578 2 12 2C13.2422 2 14.4336 2.22695 15.5336 2.64253C17.2253 3.28166 18.6968 4.3653 19.8066 5.74987C21.1786 7.46163 22 9.63626 22 12C22 12.1562 21.9964 12.3117 21.9893 12.4664C21.9042 14.3176 21.3152 16.039 20.3566 17.4943C19.0376 19.4968 17.017 20.9982 14.6411 21.6473C13.7986 21.8774 12.9128 22 12 22C11.0872 22 10.2014 21.8774 9.3589 21.6473C6.98303 20.9982 4.96244 19.4968 3.64343 17.4943C2.68484 16.039 2.09583 14.3176 2.0107 12.4664C2.00359 12.3117 2 12.1562 2 12C2 9.63626 2.82136 7.46163 4.19344 5.74987C5.30325 4.3653 6.77466 3.28166 8.46638 2.64253ZM12 7.76393L16.0287 10.691L14.4899 15.4271H9.5101L7.97126 10.691L12 7.76393Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSoccer;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA0tC,EAA1tC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qkCAAqkC,KAAK,eAAc,CAAI,EACluC,EAEc",
  "debugId": "F772420F1A73E08164756E2164756E21",
  "names": []
}