{
  "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 { Path } from \"react-native-svg\";\n\nexport const IconSettingsGear4: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSettingsGear4\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4297 4.74268L18.3896 7.18604C18.7452 7.65723 19.0502 8.16955 19.2959 8.71436C19.3194 8.76645 19.3399 8.81988 19.3623 8.87256L21.1211 9.0874L22 9.19385V14.8052L19.3623 15.1265C19.1057 15.73 18.778 16.2948 18.3887 16.811L19.4297 19.2573L14.5703 22.063L12.9727 19.938C12.6534 19.9767 12.329 20.0005 12 20.0005C11.671 20.0005 11.3466 19.9768 11.0273 19.938L9.42969 22.063L4.57031 19.2573L5.61035 16.811C5.22115 16.2948 4.89324 15.73 4.63672 15.1265L2 14.8052V9.19385L2.87891 9.0874L4.6377 8.87158C4.89421 8.26859 5.22137 7.70378 5.61035 7.18799L4.57031 4.74268L9.42969 1.93701L11.0273 4.06104C11.3466 4.02228 11.671 4.00049 12 4.00049C12.3286 4.00049 12.6528 4.02237 12.9717 4.06104L14.5703 1.93701L19.4297 4.74268ZM12 9.00049C10.3432 9.00055 9 10.3437 9 12.0005C9.00026 13.6571 10.3434 15.0004 12 15.0005C13.6567 15.0005 14.9997 13.6571 15 12.0005C15 10.3436 13.6569 9.00049 12 9.00049Z\" fill=\"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,eAAS,yBAEF,IAAM,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAshC,EAAthC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,03BAA03B,KAAK,eAAc,CAAI,EAC9hC,EAEc",
  "debugId": "885312F3ED7F1C6764756E2164756E21",
  "names": []
}