{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGamepadControlsRoundUp/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 IconGamepadControlsRoundUp: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGamepadControlsRoundUp\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C9.92893 2 8.25 3.67893 8.25 5.75C8.25 7.82107 9.92893 9.5 12 9.5C14.0711 9.5 15.75 7.82107 15.75 5.75C15.75 3.67893 14.0711 2 12 2ZM10.25 5.75C10.25 4.7835 11.0335 4 12 4C12.9665 4 13.75 4.7835 13.75 5.75C13.75 6.7165 12.9665 7.5 12 7.5C11.0335 7.5 10.25 6.7165 10.25 5.75Z\" fill=\"currentColor\"/><Path d=\"M2 12C2 9.92893 3.67893 8.25 5.75 8.25C7.82107 8.25 9.5 9.92893 9.5 12C9.5 14.0711 7.82107 15.75 5.75 15.75C3.67893 15.75 2 14.0711 2 12Z\" fill=\"currentColor\"/><Path d=\"M14.5 12C14.5 9.92893 16.1789 8.25 18.25 8.25C20.3211 8.25 22 9.92893 22 12C22 14.0711 20.3211 15.75 18.25 15.75C16.1789 15.75 14.5 14.0711 14.5 12Z\" fill=\"currentColor\"/><Path d=\"M8.25 18.25C8.25 16.1789 9.92893 14.5 12 14.5C14.0711 14.5 15.75 16.1789 15.75 18.25C15.75 20.3211 14.0711 22 12 22C9.92893 22 8.25 20.3211 8.25 18.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGamepadControlsRoundUp;\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+E,EAAM,KAAK,CAAC,IAAU,CAChH,OAAO,gBAAm9B,EAAn9B,IAAqB,EAAO,OAAO,8DAA6D,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0RAA0R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,CAAI,EAC39B,EAEc",
  "debugId": "29EFCC192B70A9B664756E2164756E21",
  "names": []
}