{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGamepadControlsRoundRight/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 IconGamepadControlsRoundRight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGamepadControlsRoundRight\"><Path 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 2Z\" fill=\"currentColor\"/><Path d=\"M5.75 8.25C3.67893 8.25 2 9.92893 2 12C2 14.0711 3.67893 15.75 5.75 15.75C7.82107 15.75 9.5 14.0711 9.5 12C9.5 9.92893 7.82107 8.25 5.75 8.25Z\" 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\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.25 8.25C16.1789 8.25 14.5 9.92893 14.5 12C14.5 14.0711 16.1789 15.75 18.25 15.75C20.3211 15.75 22 14.0711 22 12C22 9.92893 20.3211 8.25 18.25 8.25ZM16.5 12C16.5 11.0335 17.2835 10.25 18.25 10.25C19.2165 10.25 20 11.0335 20 12C20 12.9665 19.2165 13.75 18.25 13.75C17.2835 13.75 16.5 12.9665 16.5 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGamepadControlsRoundRight;\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,EAAkF,EAAM,KAAK,CAAC,IAAU,CACnH,OAAO,gBAAu+B,EAAv+B,IAAqB,EAAO,OAAO,iEAAgE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iTAAiT,KAAK,eAAc,CAAI,EAC/+B,EAEc",
  "debugId": "B3B7AD3BD8CAD5A764756E2164756E21",
  "names": []
}