{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSettingsGear4/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 IconSettingsGear4: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconSettingsGear4\"><Circle cx=\"12\" cy=\"12\" r=\"3\" stroke=\"currentColor\"/><Path d=\"M5.49491 4.78577L6.47639 7.09243C5.81763 7.83333 5.30569 8.70767 4.98619 9.66981L2.5 9.97289V14.0262L4.98581 14.3293C5.30526 15.2918 5.81728 16.1664 6.47621 16.9076L5.49493 19.2138L9.00524 21.2405L10.5108 19.2389C10.9919 19.3373 11.49 19.389 12.0001 19.389C12.5103 19.389 13.0084 19.3373 13.4894 19.2388L14.9949 21.2403L18.5052 19.2136L17.524 16.9076C18.1829 16.1664 18.695 15.2918 19.0144 14.3292L21.5 14.0262V9.97289L19.014 9.66984C18.9342 9.4293 18.8422 9.19425 18.739 8.96539C18.4293 8.27883 18.0178 7.64806 17.5237 7.09238L18.5051 4.78592L14.9948 2.75925L13.4889 4.76123C13.008 4.66283 12.5101 4.61122 12.0001 4.61122C11.4901 4.61122 10.9922 4.66289 10.5113 4.76128L9.00522 2.75909L5.49491 4.78577Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSettingsGear4;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAi3B,EAAj3B,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ksBAAksB,OAAO,eAAc,CAAI,EACz3B,EAEc",
  "debugId": "767DC1B43A6E8B5564756E2164756E21",
  "names": []
}