{
  "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-filled-radius-0-stroke-2-IconClaw\"><Path d=\"M8.87207 2.49902C19.6597 -0.942185 24.3508 14.2839 18.3857 22H8.87207C8.87207 22 7 20.8529 7 18.5586L11.1104 14.916L11.6699 11.1025L10.5508 9.46777L11.1104 7.28809L9.43164 6.19824L9.87695 4.79297L8.87207 2.49902Z\" fill=\"currentColor\"/><Path d=\"M4.54688 7.87305C5.26778 7.87323 5.89644 8.36407 6.07129 9.06348L6.33984 10.1367L8.03711 10.7031L8.60352 12.4014L10.3643 13.1055L10.1738 14.4092L6.4375 17.7207C5.41578 16.721 3.89495 15.0463 3.375 13.4814C2.91611 12.1003 2.96424 10.339 3.07422 9.16211C3.14458 8.41022 3.79167 7.87305 4.54688 7.87305Z\" fill=\"currentColor\"/><Path d=\"M6.2998 2L7.0498 3.9502L9 4.7002V5.2998L7.0498 6.0498L6.2998 8H5.7002L4.9502 6.0498L3 5.2998V4.7002L4.9502 3.9502L5.7002 2H6.2998Z\" 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,gBAAkzB,EAAlzB,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+SAA+S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,CAAI,EAC1zB,EAEc",
  "debugId": "65BDBC5056C7DF6164756E2164756E21",
  "names": []
}