{"version":3,"sources":["../src/IconHand4Finger/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHand4Finger: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"hand-4-finger, select\">\n      <path\n        d=\"M15.0007 8V9H17.0007V8H15.0007ZM21.0007 11C21.0007 10.4477 20.553 10 20.0007 10C19.4484 10 19.0007 10.4477 19.0007 11H21.0007ZM7.36929 16.7032L6.90355 15.8183L5.13371 16.7498L5.59946 17.6347L7.36929 16.7032ZM13.0007 6V5H11.0007V6H13.0007ZM11.0007 10V11H13.0007V10H11.0007ZM11.0007 8V9H13.0007V8H11.0007ZM15.0007 11V12H17.0007V11H15.0007ZM15.0007 7V8H17.0007V7H15.0007ZM19.0007 7V13.8292H21.0007V7H19.0007ZM18.0007 4C16.3438 4 15.0007 5.34315 15.0007 7H17.0007C17.0007 6.44772 17.4484 6 18.0007 6V4ZM18.0007 6C18.553 6 19.0007 6.44772 19.0007 7H21.0007C21.0007 5.34315 19.6576 4 18.0007 4V6ZM19.0007 11V13.8292H21.0007V11H19.0007ZM12.8299 20C10.5388 20 8.43636 18.7307 7.36929 16.7032L5.59946 17.6347C7.01236 20.3193 9.79628 22 12.8299 22V20ZM19.0007 13.8292C19.0007 17.2373 16.2379 20 12.8299 20V22C17.3425 22 21.0007 18.3418 21.0007 13.8292H19.0007ZM11.0007 6V10H13.0007V6H11.0007ZM13.0007 8V5H11.0007V8H13.0007ZM15.0007 5V11H17.0007V5H15.0007ZM14.0007 4C14.553 4 15.0007 4.44772 15.0007 5H17.0007C17.0007 3.34315 15.6576 2 14.0007 2V4ZM13.0007 5C13.0007 4.44772 13.4484 4 14.0007 4V2C12.3438 2 11.0007 3.34315 11.0007 5H13.0007Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M12 6C12 4.89543 11.1046 4 10 4C8.89543 4 8 4.89543 8 6V11L7.06174 10.2494C6.19921 9.55937 4.94063 9.69921 4.25061 10.5617L3.5 11.5L6.13158 16.5\"\n        stroke=\"currentColor\"\n        strokeWidth=\"2\"\n        strokeLinecap=\"square\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconHand4Finger;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,EAAE,6mCACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mJACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHand4Finger","props","React","CentralIconBase","IconHand4Finger_default"]}