{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLightningBoltOff/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 IconLightningBoltOff: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lightning-bolt-off, speed, thunder, flash, high woltage\"><path d=\"M14.8505 17.3262L12.1962 20.9785C11.0911 22.4979 8.69391 21.4452 9.06537 19.6035L10.0468 14.75H6.71186C5.28265 14.7492 4.45685 13.1271 5.29682 11.9707L7.06342 9.53905L14.8505 17.3262Z\" fill=\"currentColor\"/><path d=\"M4.21967 4.21971C4.51256 3.92684 4.98733 3.92682 5.28022 4.21971L19.7802 18.7197C20.0731 19.0126 20.0731 19.4874 19.7802 19.7803C19.4873 20.0731 19.0126 20.0731 18.7197 19.7803L4.21967 5.28026C3.92678 4.98736 3.92678 4.5126 4.21967 4.21971Z\" fill=\"currentColor\"/><path d=\"M11.8017 3.02147C12.9068 1.5013 15.3044 2.55439 14.9326 4.39647L13.9511 9.24998H17.2861C18.716 9.2501 19.5418 10.8726 18.7011 12.0293L16.9335 14.4599L9.14643 6.67284L11.8017 3.02147Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLightningBoltOff;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA+xB,EAA/xB,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yLAAyL,KAAK,eAAc,CAAI,GAGzxB",
  "debugId": "F6B6776BF2C8BBCE64756E2164756E21",
  "names": []
}