{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCloudTransfer/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 IconCloudTransfer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cloud-transfer, move-data, move-cloud-files\"><path d=\"M13.025 18.25H6.875C4.04454 18.25 1.75 15.9555 1.75 13.125C1.75 10.529 3.68024 8.38374 6.18382 8.04624C7.0149 5.63348 9.30501 3.90002 12 3.90002C15.3966 3.90002 18.15 6.65347 18.15 10.05C20.4144 10.05 22.25 11.8857 22.25 14.15C22.25 16.4144 20.4144 18.25 18.15 18.25H17.6375\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.5 14.75L14 18.25L10.5 21.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconCloudTransfer;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA+e,EAA/e,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,EAAE,qRAAqR,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,kCAAkC,OAAO,eAAe,YAAY,MAAK,CAAI,GAGze",
  "debugId": "C3CACF89D3B4983B64756E2164756E21",
  "names": []
}