{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudOff/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 IconCloudOff: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cloud-off, offline \"><path d=\"M21.662 18.4799C22.4913 17.6059 23 16.4249 23 15.125C23 12.639 21.1392 10.5876 18.7344 10.2877C18.4969 6.77542 15.5726 4 12 4C10.6299 4 9.35546 4.40813 8.29137 5.10924L21.662 18.4799Z\" fill=\"currentColor\"/><path d=\"M3.53033 2.46967C3.23744 2.17678 2.76256 2.17678 2.46967 2.46967C2.17678 2.76256 2.17678 3.23744 2.46967 3.53033L6.21274 7.2734C6.04938 7.54487 5.90452 7.82886 5.77995 8.12363C3.05101 8.68762 1 11.1034 1 13.9994C1 17.3131 3.68629 19.9994 7 19.9994H18.125C18.3816 19.9994 18.6339 19.9795 18.8804 19.9411L20.4697 21.5303C20.7626 21.8232 21.2374 21.8232 21.5303 21.5303C21.8232 21.2374 21.8232 20.7626 21.5303 20.4697L19.6759 18.6152C19.6699 18.6088 19.6639 18.6026 19.6577 18.5964L7.70871 6.6474C7.70254 6.64124 7.69628 6.63519 7.68992 6.62926L3.53033 2.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCloudOff;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAm2B,EAAn2B,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,ijBAAijB,KAAK,eAAc,CAAI,GAG71B",
  "debugId": "D101B243303B272F64756E2164756E21",
  "names": []
}