{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOffline/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 IconOffline: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"offline, disconnect, energy\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM11.2422 9.49512C10.8194 9.21324 10.2521 9.29275 9.92383 9.68066L6.4375 13.8008C6.0932 14.208 6.54078 14.7997 7.02637 14.5791L10.2471 13.1152C10.4044 13.0437 10.5876 13.0584 10.7314 13.1543L12.7578 14.5049C13.1806 14.7868 13.7479 14.7073 14.0762 14.3193L17.5625 10.1992C17.9068 9.79197 17.4592 9.20032 16.9736 9.4209L13.7529 10.8848C13.5956 10.9563 13.4124 10.9416 13.2686 10.8457L11.2422 9.49512Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconOffline;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAyoB,EAAzoB,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ggBAAggB,KAAK,eAAc,CAAI,GAGnoB",
  "debugId": "B2A877C3307C5ECF64756E2164756E21",
  "names": []
}