{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLightningBolt/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 IconLightningBolt: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lightning-bolt, speed, thunder, flash, high woltage\"><path d=\"M13.4804 2.30418C13.6853 2.0276 14.0521 1.92638 14.3701 2.05808C14.6878 2.18987 14.8757 2.52056 14.8251 2.86082L13.871 9.25047H18.2499C18.5331 9.25047 18.7924 9.40978 18.9199 9.66257C19.0471 9.9155 19.021 10.2192 18.8525 10.4468L10.5195 21.6968C10.3146 21.9731 9.94767 22.0744 9.62982 21.9428C9.31208 21.8111 9.12432 21.4803 9.17474 21.1401L10.1288 14.7505H5.74994C5.46691 14.7505 5.20757 14.591 5.08002 14.3384C4.95263 14.0855 4.97897 13.7818 5.1474 13.5542L13.4804 2.30418Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLightningBolt;\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,gBAAylB,EAAzlB,IAAqB,EAAO,UAAU,uDAAsD,gBAAC,OAAD,CAAM,EAAE,8dAA8d,KAAK,eAAc,CAAI,GAGnlB",
  "debugId": "BC28FBC35FF8217164756E2164756E21",
  "names": []
}