{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHammer2/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 IconHammer2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconHammer2\"><Path d=\"M12.5001 14.9997L7.25013 20.2497C6.28363 21.2162 4.71662 21.2162 3.75013 20.2497C2.78389 19.2832 2.78373 17.7162 3.75013 16.7497L9.00013 11.4997L12.5001 14.9997Z\" fill=\"currentColor\"/><Path d=\"M7.79017 2.2722C9.99792 1.79841 12.0698 1.82405 13.9552 2.46751C15.8483 3.1137 17.4758 4.35711 18.8283 6.18724C18.9314 6.32686 19.0234 6.44982 19.1222 6.62767C19.4978 7.30367 19.4974 8.03101 19.5167 8.42552C19.5396 8.89218 19.5797 9.0743 19.6896 9.2263C19.7513 9.31167 19.816 9.37912 19.9074 9.46849H20.9142L22.9142 11.4685L17.5001 16.8826L15.5001 14.8826V14.4685C15.5001 14.0815 15.1462 13.7912 14.7667 13.8669L13.6681 14.0867L9.92396 10.3025L10.0158 9.79173C10.2665 8.39284 10.1538 7.5243 9.81068 6.86986C9.45797 6.19724 8.77453 5.57972 7.51185 4.87279L7.00013 4.58665V2.44212L7.79017 2.2722Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHammer2;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAs4B,EAAt4B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qlBAAqlB,KAAK,eAAc,CAAI,EAC94B,EAEc",
  "debugId": "AD7EB67243FF43AF64756E2164756E21",
  "names": []
}