{"version":3,"sources":["../src/IconHumanMashine/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHumanMashine: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"human-mashine, high-five, ai, hands\">\n      <path\n        d=\"M10.5 15.75C10.5 17.5449 9.04493 19 7.25 19C5.45507 19 4 17.5449 4 15.75C4 13.9551 5.45507 12.5 7.25 12.5C9.04493 12.5 10.5 13.9551 10.5 15.75Z\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M2.5 21L7.5 19\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M1.5 15L4 14.5\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <circle cx=\"7.22266\" cy=\"15.75\" r=\"1\" fill=\"currentColor\" />\n      <path\n        d=\"M17.5 15.5L16.5 10H15.5C14.3954 10 13.5 10.8954 13.5 12V16.4845C13.5 17.8738 14.6262 19 16.0155 19C16.3356 19 16.6527 19.0611 16.9498 19.1799L21.5 21\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinejoin=\"round\"\n      />\n      <path\n        d=\"M14.5 10V5C14.5 3.89543 15.3954 3 16.5 3H17.5L20.4443 14.7777L22.5 16\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n      />\n      <path d=\"M9.5 13V3H6.5L5 13.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n    </CentralIconBase>\n  );\n};\n\nexport default IconHumanMashine;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,kJACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,QAAQ,EAAE,IAAI,KAAK,eAAe,EAC1DA,EAAA,cAAC,QACC,EAAE,wJACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,wEACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,YAAY,IAAI,CACvE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHumanMashine","props","React","CentralIconBase","IconHumanMashine_default"]}