{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGamepadControlsRoundDown/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 IconGamepadControlsRoundDown: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGamepadControlsRoundDown\"><Path d=\"M8.25 5.75C8.25 3.67893 9.92893 2 12 2C14.0711 2 15.75 3.67893 15.75 5.75C15.75 7.82107 14.0711 9.5 12 9.5C9.92893 9.5 8.25 7.82107 8.25 5.75Z\" 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=\"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 fillRule=\"evenodd\" clipRule=\"evenodd\" 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.5ZM10.25 18.25C10.25 17.2835 11.0335 16.5 12 16.5C12.9665 16.5 13.75 17.2835 13.75 18.25C13.75 19.2165 12.9665 20 12 20C11.0335 20 10.25 19.2165 10.25 18.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGamepadControlsRoundDown;\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,EAAiF,EAAM,KAAK,CAAC,IAAU,CAClH,OAAO,gBAAo+B,EAAp+B,IAAqB,EAAO,OAAO,gEAA+D,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kTAAkT,KAAK,eAAc,CAAI,EAC5+B,EAEc",
  "debugId": "3D5CA71256208FBD64756E2164756E21",
  "names": []
}