{"version":3,"sources":["../src/IconLightbulbGlow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLightbulbGlow: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase\n      {...props}\n      ariaLabel=\"lightbulb-glow, idea, reasoning, think\"\n    >\n      <path\n        d=\"M11.9991 2C7.58035 2 3.99823 5.58212 3.99823 10.0009C3.99823 12.5861 5.22513 14.885 7.12534 16.3465C7.40234 16.5595 7.69377 16.7549 7.99793 16.9308V17H16.0003V16.9308C16.3045 16.7549 16.5959 16.5595 16.8729 16.3465C18.7731 14.885 20 12.5861 20 10.0009C20 5.58212 16.4179 2 11.9991 2Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M7.99793 18.9988V18.5H16.0003V18.9988C16.0003 21.2086 14.2089 23 11.9991 23C9.78932 23 7.99793 21.2086 7.99793 18.9988Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M3.43555 13.5713L2.97168 12.1445L0.59375 12.917L1.05762 14.3438L1.77051 14.1113L3.43555 13.5713Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M21.0293 12.1436L20.5664 13.5703L21.2793 13.8027L22.9434 14.3428L23.4072 12.916L21.0293 12.1436Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M23.4072 7.08203L22.9434 5.65527L21.2793 6.19531L20.5664 6.42773L21.0293 7.85449L23.4072 7.08203Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M1.77051 5.88672L1.05762 5.6543L0.59375 7.08105L2.97168 7.85352L3.43555 6.42676L1.77051 5.88672Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconLightbulbGlow;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,8RACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0HACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLightbulbGlow","props","React","CentralIconBase","IconLightbulbGlow_default"]}