{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGamecontroller/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconGamecontroller: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconGamecontroller\"><Path d=\"M13.5664 4.5H10.4336C8.12391 4.5 6.96905 4.5 6.01879 4.91119C5.18071 5.27384 4.45795 5.85908 3.92893 6.60342C3.32911 7.44738 3.08893 8.57699 2.60857 10.8362L1.49752 16.0617C1.20999 17.414 1.93728 18.7771 3.2207 19.2912C4.81773 19.931 6.61252 19.0164 7.03352 17.3483L7.5 15.5L16.5 15.5L16.9665 17.3483C17.3875 19.0164 19.1823 19.931 20.7793 19.2912C22.0627 18.7771 22.79 17.414 22.5025 16.0617L21.3914 10.8362C20.9111 8.57699 20.6709 7.44738 20.0711 6.60342C19.542 5.85908 18.8193 5.27384 17.9812 4.91119C17.031 4.5 15.8761 4.5 13.5664 4.5Z\" stroke=\"currentColor\"/><Circle cx=\"17\" cy=\"11.5\" r=\"1\" fill=\"currentColor\"/><Circle cx=\"15\" cy=\"8.5\" r=\"1\" fill=\"currentColor\"/><Path d=\"M11 10H6M8.5 12.5V7.5\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGamecontroller;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAAyzB,EAAzzB,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,EAAE,8hBAA8hB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,OAAO,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,MAAM,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wBAAwB,OAAO,eAAc,CAAI,EACj0B,EAEc",
  "debugId": "7E482F4E347C6EC164756E2164756E21",
  "names": []
}