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.34 kB
{"version":3,"sources":["../src/IconGroup2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGroup2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"group-2, users\">\n <path\n d=\"M1.5 20L0.502475 19.9297L0.427027 21H1.5V20ZM13.5 20V21H14.573L14.4975 19.9297L13.5 20ZM22.5 20V21H23.573L23.4975 19.9297L22.5 20ZM9.5 7C9.5 8.10457 8.60457 9 7.5 9V11C9.70914 11 11.5 9.20914 11.5 7H9.5ZM7.5 9C6.39543 9 5.5 8.10457 5.5 7H3.5C3.5 9.20914 5.29086 11 7.5 11V9ZM5.5 7C5.5 5.89543 6.39543 5 7.5 5V3C5.29086 3 3.5 4.79086 3.5 7H5.5ZM7.5 5C8.60457 5 9.5 5.89543 9.5 7H11.5C11.5 4.79086 9.70914 3 7.5 3V5ZM18.5 7C18.5 8.10457 17.6046 9 16.5 9V11C18.7091 11 20.5 9.20914 20.5 7H18.5ZM16.5 9C15.3954 9 14.5 8.10457 14.5 7H12.5C12.5 9.20914 14.2909 11 16.5 11V9ZM14.5 7C14.5 5.89543 15.3954 5 16.5 5V3C14.2909 3 12.5 4.79086 12.5 7H14.5ZM16.5 5C17.6046 5 18.5 5.89543 18.5 7H20.5C20.5 4.79086 18.7091 3 16.5 3V5ZM1.5 21H13.5V19H1.5V21ZM2.49752 20.0703C2.79785 15.8098 5.29963 14 7.5 14C9.70037 14 12.2021 15.8098 12.5025 20.0703L14.4975 19.9297C14.1399 14.8568 10.9707 12 7.5 12C4.02933 12 0.860067 14.8568 0.502475 19.9297L2.49752 20.0703ZM14.6994 14.4052C16.0604 13.7662 17.6363 13.8808 18.9286 14.7649C20.2142 15.6445 21.3113 17.3578 21.5025 20.0703L23.4975 19.9297C23.2719 16.7283 21.9393 14.4014 20.0579 13.1143C18.1833 11.8317 15.8548 11.6533 13.8494 12.5948L14.6994 14.4052ZM17 21H22.5V19H17V21Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGroup2;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpCC,EAAA,cAAC,QACC,EAAE,2rCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup2","props","React","CentralIconBase","IconGroup2_default"]}