{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLightning/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 IconLightning: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lightning, zap, flash, thunder\"><path d=\"M8.75 2C8.46592 2 8.20622 2.1605 8.07918 2.41459L3.07918 12.4146C2.96293 12.6471 2.97536 12.9232 3.11201 13.1443C3.24867 13.3654 3.49007 13.5 3.75 13.5H7.93406L6.02284 21.0663C5.94205 21.3862 6.07973 21.7212 6.36205 21.8919C6.64437 22.0625 7.00504 22.0286 7.25066 21.8084L21.7507 8.80843C21.9821 8.60095 22.0615 8.27225 21.9505 7.98197C21.8394 7.69169 21.5608 7.5 21.25 7.5H16.4635L18.6708 3.08541C18.7871 2.85292 18.7746 2.57681 18.638 2.3557C18.5013 2.13459 18.2599 2 18 2H8.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLightning;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAykB,EAAzkB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,meAAme,KAAK,eAAc,CAAI,GAGnkB",
  "debugId": "233B82EC15BEB55A64756E2164756E21",
  "names": []
}