{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudy/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 IconCloudy: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cloudy, clouds\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.4903 6.28083C9.98427 6.16249 9.45738 6.1 8.91667 6.1C5.09289 6.1 2 9.21544 2 13.05C2 16.8846 5.09289 20 8.91667 20H16.625C19.5973 20 22 17.5785 22 14.6C22 12.6634 20.985 10.9643 19.4597 10.0113C19.7703 9.36765 19.9444 8.64529 19.9444 7.88333C19.9444 5.19016 17.7719 3 15.0833 3C12.9547 3 11.1501 4.37275 10.4903 6.28083ZM11.9046 6.78036C13.1377 7.3746 14.167 8.3245 14.8624 9.49725C15.4151 9.30459 16.0084 9.2 16.625 9.2C17.1313 9.2 17.622 9.27052 18.0876 9.40252C18.3159 8.94618 18.4444 8.43055 18.4444 7.88333C18.4444 6.01095 16.9358 4.5 15.0833 4.5C13.6134 4.5 12.3594 5.45154 11.9046 6.78036Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCloudy;\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,gBAAutB,EAAvtB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2lBAA2lB,KAAK,eAAc,CAAI,GAGjtB",
  "debugId": "067144C93F8D399D64756E2164756E21",
  "names": []
}