@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.08 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTwitter/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTwitter: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"twitter, larry\">\n <path\n d=\"M23.25 5.13125C22.4226 5.49214 21.5337 5.73599 20.5993 5.84621C21.5525 5.28438 22.2838 4.39287 22.6287 3.33164C21.7369 3.8525 20.7489 4.23095 19.6975 4.43384C18.8552 3.55208 17.6562 3 16.3284 3C13.7797 3 11.7126 5.03468 11.7126 7.54536C11.7126 7.9004 11.7543 8.24569 11.8315 8.57928C7.99368 8.38908 4.59381 6.57971 2.31666 3.83104C1.92029 4.50406 1.69237 5.28438 1.69237 6.11542C1.69237 7.69167 2.50791 9.08356 3.74557 9.89802C2.98851 9.87363 2.27702 9.66977 1.65472 9.32936V9.38788C1.65472 11.5894 3.24516 13.426 5.35781 13.8435C4.96937 13.9469 4.5621 14.0015 4.14194 14.0015C3.84467 14.0015 3.55432 13.9742 3.2729 13.9215C3.86052 15.726 5.56492 17.0409 7.58542 17.076C6.00489 18.2952 4.01412 19.0219 1.85191 19.0219C1.47932 19.0219 1.11169 19.0004 0.75 18.9585C2.79329 20.2489 5.21908 21 7.82522 21C16.3175 21 20.96 14.0766 20.96 8.07207C20.96 7.87699 20.955 7.67996 20.9461 7.48488C21.8478 6.84307 22.6307 6.04422 23.248 5.13417L23.25 5.13125Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTwitter;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpCC,EAAA,cAAC,QACC,EAAE,q7BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTwitter","props","React","CentralIconBase","IconTwitter_default"]}