{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconClaw/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 IconClaw: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconClaw\"><Path d=\"M11.5 14L8.8417 13.4706L8.30213 11.7941L6.68341 11.2353L6.43155 10.1919C6.26276 9.49265 5.63704 9 4.91773 9C4.2177 9 3.6055 9.46998 3.54018 10.167C3.46157 11.0056 3.46576 12.1994 3.8573 13.4198C4.62948 15.8267 7.5 18.5 7.5 18.5\" stroke=\"currentColor\"/><Path d=\"M9.2283 21.5H18.0117C23.5192 14.1493 19.5256 -0.301851 9.56567 2.97646L10.4938 5.16211L10.0823 6.50097L11.295 7.4847L10.7784 9.56106L11.8116 11.1182L11.295 14.7518L7.5 18.2218C7.5 20.4074 9.2283 21.5 9.2283 21.5Z\" stroke=\"currentColor\"/><Path d=\"M6.3 2H5.7L4.95 3.95L3 4.7V5.3L4.95 6.05L5.7 8H6.3L7.05 6.05L9 5.3V4.7L7.05 3.95L6.3 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconClaw;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAAosB,EAApsB,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,sOAAsO,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uNAAuN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,CAAI,EAC5sB,EAEc",
  "debugId": "7FFF88E2ED88419C64756E2164756E21",
  "names": []
}