{
  "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  mode?: \"masked\" | \"raw\";\n  maskId?: string;\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  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\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      {masked ? (\n        <>\n          <mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <g fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLightningBoltOff: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lightning-bolt-off, speed, thunder, flash, high woltage\" maskId=\"round-filled-radius-0-stroke-1.5-IconLightningBoltOff\"><path d=\"M14.2215 16.6967L10.5194 21.6967C10.3145 21.973 9.94757 22.0744 9.62973 21.9428C9.31201 21.8111 9.12425 21.4802 9.17465 21.1401L10.1288 14.7504H5.74985C5.46684 14.7504 5.20749 14.5909 5.07993 14.3383C4.95262 14.0855 4.97891 13.7817 5.14731 13.5541L7.67075 10.1459L14.2215 16.6967Z\" fill=\"currentColor\"/><path d=\"M4.21958 4.22015C4.51247 3.92726 4.98723 3.92726 5.28012 4.22015L19.7801 18.7202C20.0728 19.0131 20.0729 19.4879 19.7801 19.7807C19.4873 20.0733 19.0124 20.0733 18.7196 19.7807L4.21958 5.2807C3.92675 4.98787 3.92687 4.51306 4.21958 4.22015Z\" fill=\"currentColor\"/><path d=\"M13.4803 2.30414C13.6852 2.02768 14.0521 1.92638 14.37 2.05804C14.6876 2.18983 14.8756 2.52062 14.825 2.86078L13.8709 9.25042H18.2499C18.5329 9.25046 18.7923 9.40986 18.9198 9.66253C19.047 9.91539 19.0208 10.2192 18.8524 10.4467L16.328 13.8539L9.77719 7.30316L13.4803 2.30414Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLightningBoltOff;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,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,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAA6hC,EAA7hC,IAAqB,EAAO,UAAU,0DAA0D,OAAO,yDAAwD,gBAAC,OAAD,CAAM,EAAE,2RAA2R,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,CAAI,EACriC,EAEc",
  "debugId": "95F949B56BFBE08064756E2164756E21",
  "names": []
}