{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHumanMashine/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 IconHumanMashine: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconHumanMashine\"><Path d=\"M20.7158 15.0859L22 16L21 22L16.833 19.9775C16.5029 19.8455 16.1505 19.7773 15.7949 19.7773C14.2513 19.7773 13 18.526 13 16.9824V12.25C13 11.0074 14.0074 10 15.25 10H15.5898L16.5098 14.5977L17.4902 14.4023L16.4102 9H15.25C14.8069 9 14.3849 9.08945 14 9.25V4.22266C14 2.99536 14.9954 2 16.2227 2H17L20.7158 15.0859Z\" fill=\"currentColor\"/><Path d=\"M3.0498 14.8281C3.01699 15.0473 3 15.2717 3 15.5C3 17.7508 4.65257 19.6155 6.81055 19.9473L3 22L1 16L3.0498 14.8281Z\" fill=\"currentColor\"/><Path d=\"M10 11.7578C9.28495 11.2792 8.42508 11 7.5 11C6.55803 11 5.68363 11.2894 4.96094 11.7842L7 2H10V11.7578Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.5 12C9.433 12 11 13.567 11 15.5C11 17.433 9.433 19 7.5 19C5.567 19 4 17.433 4 15.5C4 13.567 5.567 12 7.5 12ZM7.5 14.5C6.94772 14.5 6.5 14.9477 6.5 15.5C6.5 16.0523 6.94772 16.5 7.5 16.5C8.05228 16.5 8.5 16.0523 8.5 15.5C8.5 14.9477 8.05228 14.5 7.5 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHumanMashine;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAqhC,EAArhC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,6TAA6T,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uHAAuH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2GAA2G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oQAAoQ,KAAK,eAAc,CAAI,EAC7hC,EAEc",
  "debugId": "B714AD3822BEFCAD64756E2164756E21",
  "names": []
}