@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.35 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPeopleVersus/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleVersus: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"people-versus, vs, match, 1v1\">\n <path\n d=\"M16.4633 2.18572L8.46326 22.1857L7.53479 21.8143L15.5348 1.81433L16.4633 2.18572Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.999 10C15.3422 10 13.999 11.3432 13.999 13C13.999 14.6569 15.3422 16 16.999 16C18.6559 16 19.999 14.6569 19.999 13C19.999 11.3432 18.6559 10 16.999 10Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.9989 16.5C14.1728 16.5 12.2399 18.7314 12.0008 21.4563L11.9531 22H22.0447L21.997 21.4563C21.7579 18.7314 19.8251 16.5 16.9989 16.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.99892 8.50003C8.59386 8.50003 9.9043 9.2107 10.7863 10.3197L9.31422 14H1.95312L2.00083 13.4563C2.23992 10.7314 4.17278 8.50003 6.99892 8.50003Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.99902 2.00003C5.34217 2.00003 3.99902 3.34317 3.99902 5.00003C3.99902 6.65688 5.34217 8.00003 6.99902 8.00003C8.65588 8.00003 9.99902 6.65688 9.99902 5.00003C9.99902 3.34317 8.65588 2.00003 6.99902 2.00003Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleVersus;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iCACpCC,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleVersus","props","React","CentralIconBase","IconPeopleVersus_default"]}