{"version":3,"sources":["../src/IconSpatialCapture/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSpatialCapture: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"spatial-capture\">\n      <path\n        d=\"M8.49844 2.89876L11.9998 0.884766L16.85 3.67458L8.49844 8.49638V2.89876Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.99844 3.76156L2.33984 6.44116V10.7151L6.99844 13.4047V3.76156Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M2.33984 12.4471V17.5588L6.07782 19.7089L10.4977 17.1571L2.33984 12.4471Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M7.58062 20.5733L11.9998 23.1152L15.4984 21.1028V16.0019L7.58062 20.5733Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M16.9984 20.24L21.6598 17.5588V13.7866L16.9984 11.0953V20.24Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M21.6598 12.0545V6.44116L18.3528 4.53899L13.4977 7.3421L21.6598 12.0545Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M11.9977 16.291L8.49844 14.2707V10.2284L11.9977 8.20812L15.4984 10.2293V14.2699L11.9977 16.291Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconSpatialCapture;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,QACC,EAAE,2EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSpatialCapture","props","React","CentralIconBase","IconSpatialCapture_default"]}