{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconIceHockey/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 IconIceHockey: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconIceHockey\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1.61985 7.58633C1.13675 8.03051 1 8.3967 1 8.66667C1 8.93663 1.13675 9.30282 1.61985 9.74701C2.10381 10.192 2.8593 10.6387 3.87716 11.0345C5.90653 11.8237 8.77805 12.3333 12 12.3333C15.222 12.3333 18.0935 11.8237 20.1228 11.0345C21.1407 10.6387 21.8962 10.192 22.3801 9.74701C22.8633 9.30282 23 8.93663 23 8.66667C23 8.3967 22.8633 8.03051 22.3801 7.58633C21.8962 7.14136 21.1407 6.69467 20.1228 6.29884C18.0935 5.50964 15.222 5 12 5C8.77805 5 5.90653 5.50964 3.87716 6.29884C2.8593 6.69467 2.10381 7.14136 1.61985 7.58633ZM23 11.7977C22.3835 12.2189 21.6526 12.5855 20.8477 12.8985C18.534 13.7983 15.4055 14.3333 12 14.3333C8.59453 14.3333 5.46605 13.7983 3.15227 12.8985C2.34742 12.5855 1.61648 12.2189 1 11.7977V15.3333C1 15.6033 1.13675 15.9695 1.61985 16.4137C2.10381 16.8586 2.8593 17.3053 3.87716 17.7012C5.90653 18.4904 8.77805 19 12 19C15.222 19 18.0935 18.4904 20.1228 17.7012C21.1407 17.3053 21.8962 16.8586 22.3801 16.4137C22.8633 15.9695 23 15.6033 23 15.3333V11.7977Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconIceHockey;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAinC,EAAjnC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y9BAAy9B,KAAK,eAAc,CAAI,EACznC,EAEc",
  "debugId": "935BDC81BA1DCD1E64756E2164756E21",
  "names": []
}