{"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=\"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\"\n        fill=\"currentColor\"\n      />\n      <path\n        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\"\n        fill=\"currentColor\"\n      />\n      <path\n        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\"\n        fill=\"currentColor\"\n      />\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        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\"\n        fill=\"currentColor\"\n      />\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,6TACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2GACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHumanMashine","props","React","CentralIconBase","IconHumanMashine_default"]}