{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudSync/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 IconCloudSync: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cloud-sync\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.77996 8.12427C6.80396 5.70153 9.20241 4 12 4C15.5725 4 18.4969 6.77542 18.7344 10.2877C21.1392 10.5876 23 12.639 23 15.125C23 17.8174 20.8174 20 18.125 20H7C3.68629 20 1 17.3137 1 14C1 11.1041 3.05102 8.68825 5.77996 8.12427ZM12.6566 11.7507L14.3831 10.3067C14.5743 10.1469 14.5743 9.85297 14.3831 9.69308L12.6566 8.24909C12.3962 8.0313 12 8.21645 12 8.55592V9.24996C10.067 9.24996 8.5 10.817 8.5 12.75C8.5 14.683 10.067 16.25 12 16.25C13.7187 16.25 15.1466 15.012 15.4435 13.3792C15.5175 12.9717 15.2472 12.5813 14.8397 12.5072C14.4322 12.4331 14.0417 12.7034 13.9676 13.1109C13.7982 14.0431 12.9808 14.75 12 14.75C10.8954 14.75 10 13.8545 10 12.75C10 11.6454 10.8954 10.75 12 10.75V11.4439C12 11.7834 12.3962 11.9685 12.6566 11.7507Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCloudSync;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA61B,EAA71B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,quBAAquB,KAAK,eAAc,CAAI,GAGv1B",
  "debugId": "47B50ADCF51A0B1D64756E2164756E21",
  "names": []
}