{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSettingsGear3/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 IconSettingsGear3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSettingsGear3\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 1V3.05511C13.9172 3.15662 14.7935 3.39607 15.6072 3.75239L16.634 1.97391L18.3661 2.97392L17.3385 4.7537C18.066 5.29047 18.7097 5.93414 19.2464 6.66167L21.0263 5.63407L22.0263 7.36612L20.2477 8.39297C20.6041 9.20666 20.8435 10.083 20.945 11.0001H23V13.0001H20.945C20.8435 13.9172 20.604 14.7936 20.2477 15.6073L22.0263 16.6342L21.0263 18.3662L19.2464 17.3386C18.7096 18.0661 18.066 18.7098 17.3384 19.2465L18.3661 21.0264L16.634 22.0264L15.6072 20.2478C14.7935 20.6041 13.9171 20.8436 13 20.9451V23H11V20.9451C10.0829 20.8436 9.20662 20.6041 8.39294 20.2478L7.36606 22.0265L5.634 21.0265L6.66163 19.2465C5.93408 18.7098 5.29039 18.0661 4.7536 17.3385L2.97375 18.3661L1.97374 16.6341L3.7523 15.6072C3.39599 14.7935 3.15653 13.9172 3.05503 13.0001L1 13L1.0001 11L3.05504 11.0001C3.15655 10.083 3.39598 9.2067 3.75227 8.39304L1.97375 7.36623L2.97373 5.63417L4.75356 6.66173C5.29034 5.93417 5.93404 5.29047 6.6616 4.75368L5.634 2.97382L7.36605 1.97382L8.3929 3.75237C9.20659 3.39606 10.0829 3.15661 11 3.05511V1H13ZM7.66973 6.49981C6.97292 7.04925 6.38286 7.7283 5.9362 8.50029C5.341 9.529 5.00002 10.7232 5.00002 12.0001C5.00002 13.277 5.34101 14.4712 5.93622 15.5C6.38289 16.2719 6.97295 16.951 7.66975 17.5004L9.71985 13.9495C9.27167 13.4257 9.00002 12.7449 9.00002 12.0001C9.00002 11.2553 9.27167 10.5745 9.71984 10.0507L7.66973 6.49981ZM11.4516 9.05028L9.40087 5.49823C10.2038 5.17694 11.0804 5.0001 12 5.0001C13.2769 5.0001 14.4712 5.34109 15.4999 5.93632C16.5625 6.55114 17.449 7.43764 18.0638 8.50024C18.5007 9.25528 18.8006 10.0995 18.9293 11.0001H14.8293C14.4175 9.8349 13.3062 9.0001 12 9.0001C11.813 9.0001 11.6297 9.01731 11.4516 9.05028ZM14.8293 13.0001C14.4175 14.1653 13.3062 15.0001 12 15.0001C11.813 15.0001 11.6297 14.9829 11.4517 14.9499L9.4009 18.502C10.2038 18.8233 11.0805 19.0001 12 19.0001C13.2769 19.0001 14.4712 18.6591 15.4999 18.0639C16.5625 17.4491 17.449 16.5626 18.0638 15.5C18.5007 14.745 18.8006 13.9007 18.9293 13.0001H14.8293Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSettingsGear3;\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,gBAAwkE,EAAxkE,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,46DAA46D,KAAK,eAAc,CAAI,EAChlE,EAEc",
  "debugId": "83F75DF954E54EB764756E2164756E21",
  "names": []
}