@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.56 kB
Source Map (JSON)
{"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=\"M12 2C7.58172 2 4 5.58172 4 10C4 12.9619 5.60976 15.5471 8 16.9296V17H16V16.9296C18.3902 15.5471 20 12.9619 20 10C20 5.58172 16.4183 2 12 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8 19V18H16V19C16 21.2091 14.2091 23 12 23C9.79086 23 8 21.2091 8 19Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2.64453 13.5654L3.12012 13.4102L2.81152 12.459L2.33594 12.6143L0.90918 13.0771L1.21777 14.0283L2.64453 13.5654Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M23.0928 13.0771L21.666 12.6133L21.1904 12.459L20.8809 13.4102L21.3564 13.5645L22.3076 13.873L22.7832 14.0283L23.0928 13.0771ZM21.3564 13.5645L21.666 12.6133L21.5117 13.0889L21.3564 13.5645Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.12012 6.58789L2.64453 6.43262L1.21777 5.96973L0.90918 6.9209L2.33594 7.38379L2.81152 7.53906L3.12012 6.58789Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M23.0928 6.9209L22.7832 5.96973L22.3076 6.125L20.8809 6.58789L21.1904 7.53906L23.0928 6.9209Z\"\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,+IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLightbulbGlow","props","React","CentralIconBase","IconLightbulbGlow_default"]}