{
  "version": 3,
  "sources": ["src/IconHumanMashine/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconHumanMashine\"><Path d=\"M15.7088 2C16.4727 2.00007 17.1437 2.50729 17.3524 3.24219L20.6199 14.748C20.682 14.9668 20.8165 15.1582 21.0018 15.29L21.4979 15.6426C21.8057 15.8617 21.9635 16.2359 21.9061 16.6094L21.2274 21.0225C21.1191 21.7264 20.3298 22.0944 19.7205 21.7256L17.0672 20.1191C16.9114 20.0248 16.7489 19.9395 16.574 19.8887C16.3213 19.8153 16.0589 19.7773 15.7947 19.7773C14.2511 19.7773 12.9998 18.526 12.9998 16.9824V11.1914C13.2318 10.5078 13.8757 10.0002 14.6571 10C15.1992 10 15.6669 10.3825 15.7733 10.9141L16.5096 14.5977L16.5389 14.6953C16.6293 14.9093 16.8608 15.0374 17.0975 14.9902C17.3344 14.9429 17.4987 14.7354 17.4998 14.5029L17.4901 14.4023L16.7537 10.7178C16.5538 9.71889 15.6758 9 14.6571 9C14.4297 9.00004 14.2098 9.02777 13.9998 9.0791V3.70898C13.9998 2.76522 14.765 2 15.7088 2Z\" fill=\"currentColor\"/><Path d=\"M3.05026 14.8281C3.01744 15.0473 3.00046 15.2716 3.00046 15.5C3.00046 17.8481 4.7986 19.7748 7.09323 19.9805L4.10007 21.8232C3.5432 22.1659 2.813 21.8905 2.62057 21.2656L1.23581 16.7656C1.0982 16.3184 1.28854 15.8347 1.69479 15.6025L3.05026 14.8281Z\" fill=\"currentColor\"/><Path d=\"M8.34518 2C9.25889 2 10.0003 2.74063 10.0005 3.6543V11.7578C9.28546 11.2791 8.4255 11.0001 7.50046 11C6.55882 11 5.68394 11.2887 4.96139 11.7832L6.72604 3.31738C6.88587 2.55018 7.56153 2.0001 8.34518 2Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.49983 12C9.43282 12 10.9998 13.567 10.9998 15.5C10.9998 17.433 9.43282 19 7.49983 19C5.56683 19 3.99983 17.433 3.99983 15.5C3.99983 13.567 5.56683 12 7.49983 12ZM7.49983 14.5C6.94754 14.5 6.49983 14.9477 6.49983 15.5C6.49983 16.0523 6.94754 16.5 7.49983 16.5C8.05211 16.5 8.49983 16.0523 8.49983 15.5C8.49983 14.9477 8.05211 14.5 7.49983 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconHumanMashine;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAqE,EAAM,KAAK,CAAC,IACrF,gBAA2yD,EAA3yD,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,oxBAAoxB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4PAA4P,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6MAA6M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6VAA6V,KAAK,eAAc,CAAI,CACnzD,EAEc",
  "debugId": "B9CABBF289E84BF864756E2164756E21",
  "names": []
}