{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGoblin/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 IconGoblin: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGoblin\"><Path d=\"M12 10.25C13.8984 10.25 15.8161 10.5674 18.8389 11.2324C18.9241 11.2512 19.0088 11.2513 19.0908 11.2412C19.1748 11.497 19.2524 11.7502 19.3203 12H23V13C23 15.4111 21.7612 16.8282 20.5303 17.5977C19.9321 17.9715 19.3416 18.1921 18.9053 18.3193C18.856 18.3337 18.8074 18.3442 18.7617 18.3564C18.3199 19.4028 17.4733 20.257 16.4443 20.8623C15.2136 21.5862 13.6604 22 12 22C10.3396 22 8.78644 21.5862 7.55566 20.8623C6.52653 20.2569 5.67912 19.4029 5.2373 18.3564C5.19192 18.3443 5.14369 18.3336 5.09473 18.3193C4.65839 18.1921 4.06792 17.9715 3.46973 17.5977C2.23875 16.8282 1 15.4111 1 13V12H4.67969C4.74973 11.7469 4.8287 11.4939 4.91504 11.2412C4.99525 11.2504 5.07786 11.2507 5.16113 11.2324C8.18387 10.5674 10.1016 10.25 12 10.25Z\" fill=\"currentColor\"/><Path d=\"M12.165 1.51367C15.3065 2.03734 17.5333 2.99634 19.8994 4.26953L22.3047 5.56348L16.8975 6.70508C17.483 7.58896 18.0203 8.59473 18.4668 9.61816C15.8022 9.0481 13.9095 8.75 12 8.75C10.1015 8.75 8.21943 9.04379 5.5791 9.60742C6.98612 6.60673 9.30159 3.78414 11.293 1.79297L11.6572 1.42871L12.165 1.51367Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGoblin;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA2pC,EAA3pC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,+tBAA+tB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gTAAgT,KAAK,eAAc,CAAI,EACnqC,EAEc",
  "debugId": "E978BE3648AE328764756E2164756E21",
  "names": []
}