{
  "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-1-stroke-1.5-IconLightningBoltOff\"><path d=\"M14.2392 17.421L11.2939 21.4405C10.5093 22.5099 8.81887 21.7816 9.05656 20.4767L10.1005 14.7501H6.23625C5.21266 14.75 4.62345 13.5865 5.22844 12.7609L7.06828 10.2501L14.2392 17.421Z\" fill=\"currentColor\"/><path d=\"M4.21965 4.21984C4.51254 3.92694 4.9873 3.92694 5.2802 4.21984L19.7802 18.7198C20.073 19.0127 20.0731 19.4875 19.7802 19.7804C19.4873 20.0732 19.0125 20.0732 18.7197 19.7804L4.21965 5.28038C3.92677 4.9875 3.9268 4.51273 4.21965 4.21984Z\" fill=\"currentColor\"/><path d=\"M12.7822 2.46495C13.5943 1.53611 15.1739 2.25906 14.9433 3.52355L13.8993 9.25011H17.7636C18.7872 9.25031 19.3766 10.4137 18.7714 11.2394L16.9306 13.7491L9.75969 6.57824L12.706 2.55968L12.7822 2.46495Z\" 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,gBAA02B,EAA12B,IAAqB,EAAO,UAAU,0DAA0D,OAAO,yDAAwD,gBAAC,OAAD,CAAM,EAAE,wLAAwL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,CAAI,EACl3B,EAEc",
  "debugId": "1673A59E1C1E5BF664756E2164756E21",
  "names": []
}