UNPKG

@central-icons-react/square-outlined-radius-0-stroke-2

Version:

A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.

1 lines 3.65 kB
{"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=\"M19 12.5C19 13.6046 18.1046 14.5 17 14.5C15.8954 14.5 15 13.6046 15 12.5C15 11.3954 15.8954 10.5 17 10.5C18.1046 10.5 19 11.3954 19 12.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M12.8516 21L11.8554 20.9126L11.76 22H12.8516V21ZM20.8516 21V22H21.9431L21.8477 20.9126L20.8516 21ZM13.8477 21.0874C14.0091 19.2488 15.2408 18 16.8516 18V16C13.9928 16 12.0876 18.266 11.8554 20.9126L13.8477 21.0874ZM16.8516 18C18.4623 18 19.6941 19.2488 19.8554 21.0874L21.8477 20.9126C21.6155 18.266 19.7104 16 16.8516 16V18ZM12.8516 22H20.8516V20H12.8516V22Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2.85156 13.5L1.85539 13.4126L1.75998 14.5H2.85156V13.5ZM3.84774 13.5874C4.00905 11.7488 5.24082 10.5 6.85156 10.5V8.5C3.99276 8.5 2.08761 10.766 1.85539 13.4126L3.84774 13.5874ZM2.85156 14.5H8.49878V12.5H2.85156V14.5ZM6.85156 10.5C7.64582 10.5 8.3077 10.7902 8.80961 11.2676L10.1879 9.81835C9.32183 8.99459 8.16928 8.5 6.85156 8.5V10.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9 5C9 6.10457 8.10457 7 7 7C5.89543 7 5 6.10457 5 5C5 3.89543 5.89543 3 7 3C8.10457 3 9 3.89543 9 5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path d=\"M8 22L16 2\" stroke=\"currentColor\" strokeWidth=\"2\" />\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,4IACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,0WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oVACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wGACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,CAC7D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleVersus","props","React","CentralIconBase","IconPeopleVersus_default"]}