{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGamepadControlsRound/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 IconGamepadControlsRound: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGamepadControlsRound\"><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=\"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.25Z\" fill=\"currentColor\"/><Path d=\"M12 14.5C9.92893 14.5 8.25 16.1789 8.25 18.25C8.25 20.3211 9.92893 22 12 22C14.0711 22 15.75 20.3211 15.75 18.25C15.75 16.1789 14.0711 14.5 12 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGamepadControlsRound;\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,EAA6E,EAAM,KAAK,CAAC,IAAU,CAC9G,OAAO,gBAAkyB,EAAlyB,IAAqB,EAAO,OAAO,4DAA2D,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,EAAE,uJAAuJ,KAAK,eAAc,CAAI,EAC1yB,EAEc",
  "debugId": "0C6BABB6C720FE1364756E2164756E21",
  "names": []
}