{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBug/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 IconBug: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBug\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.00029 7.5723V7H7.00029C7.00029 4.23858 9.23886 2 12.0003 2C14.7617 2 17.0003 4.23858 17.0003 7H19.0003V7.5723L21.3483 6.71846L22.0318 8.59805L19.0003 9.70043V12H22.0003V14H19.0003V15C19.0003 15.4297 18.9616 15.8503 18.8875 16.2585L22.0318 17.402L21.3483 19.2815L18.2506 18.1551C17.2403 20.1526 15.3005 21.6002 13 21.9292V12H11V21.9291C8.6997 21.5999 6.7602 20.1525 5.74996 18.1551L2.65224 19.2815L1.96875 17.402L5.11312 16.2585C5.039 15.8503 5.00029 15.4297 5.00029 15V14H2.00029V12H5.00029V9.70043L1.96875 8.59805L2.65224 6.71846L5.00029 7.5723ZM12.0003 4C10.3434 4 9.00029 5.34315 9.00029 7H15.0003C15.0003 5.34315 13.6571 4 12.0003 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBug;\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,EAA4D,EAAM,KAAK,CAAC,IAAU,CAC7F,OAAO,gBAAqxB,EAArxB,IAAqB,EAAO,OAAO,2CAA0C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,moBAAmoB,KAAK,eAAc,CAAI,EAC7xB,EAEc",
  "debugId": "C92D504ED92A738E64756E2164756E21",
  "names": []
}