{
  "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 3.60986C11.556 3.60992 13.0112 4.25602 14.0703 5.29932C14.1965 5.4236 14.3957 5.49054 14.5996 5.45947C14.8384 5.42311 15.0827 5.40383 15.3311 5.40381C18.0096 5.40381 20.1816 7.57581 20.1816 10.2544C20.1816 10.5182 20.3366 10.7846 20.5596 10.9126C22.016 11.7477 23 13.3198 23 15.1226C22.9999 17.7173 20.9624 19.8362 18.3994 19.9663C18.3926 19.9667 18.3857 19.9671 18.3789 19.9673L18.168 19.9722H6.875C3.63033 19.9722 1 17.3418 1 14.0972C1.00008 11.9488 2.15441 10.0717 3.87207 9.04834C4.01351 8.96397 4.11159 8.81565 4.13477 8.65283C4.53929 5.80221 6.98755 3.60986 9.9502 3.60986Z\" fill=\"currentColor\"/></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,gBAA6pB,EAA7pB,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,EAAE,8kBAA8kB,KAAK,eAAc,CAAI,GAGvpB",
  "debugId": "8BF3682D3020488D64756E2164756E21",
  "names": []
}