{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPanoramaView/index.tsx"],
  "sourcesContent": [
    "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",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPanoramaView: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"panorama-view\"><path d=\"M1.98878 4.03903C1.75995 3.96218 1.50813 4.00016 1.31215 4.14108C1.11618 4.282 1 4.50862 1 4.75001V19.25C1 19.492 1.11679 19.7192 1.31362 19.86C1.51045 20.0008 1.76314 20.038 1.9922 19.9598C8.86694 17.6141 15.1331 17.6141 22.0078 19.9598C22.2369 20.038 22.4895 20.0008 22.6864 19.86C22.8832 19.7192 23 19.492 23 19.25V4.75001C23 4.50862 22.8838 4.282 22.6878 4.14108C22.4919 4.00016 22.24 3.96218 22.0112 4.03903C15.0958 6.36152 8.90418 6.36152 1.98878 4.03903Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPanoramaView;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAqiB,EAAriB,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,gdAAgd,KAAK,eAAc,CAAI,GAG/hB",
  "debugId": "3B97DE4C2A8A330A64756E2164756E21",
  "names": []
}