{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloud2/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 IconCloud2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cloud-2\"><path d=\"M9.9502 4.35999C11.6082 4.36005 13.0809 5.14853 14.0176 6.36975C14.43 6.23031 14.8716 6.15397 15.3311 6.15393C17.5954 6.15393 19.4316 7.99015 19.4316 10.2545C19.4316 10.5775 19.3929 10.8915 19.3223 11.193C21.0154 11.6973 22.25 13.2657 22.25 15.1227C22.2499 17.3161 20.5274 19.1074 18.3613 19.2174L18.1504 19.2223H6.875C4.04454 19.2223 1.75 16.9277 1.75 14.0973C1.75008 11.9951 3.01621 10.1895 4.82715 9.39905C4.87304 6.60824 7.14845 4.35999 9.9502 4.35999Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconCloud2;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA8iB,EAA9iB,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,EAAE,2cAA2c,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxiB",
  "debugId": "13F677C837E7E45E64756E2164756E21",
  "names": []
}