UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

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

1 lines 3.75 kB
{"version":3,"sources":["../src/IconUserGroup/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconUserGroup: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"user-group, team, club, member, friends, community\"\n >\n <path\n d=\"M15.3916 12.1729C16.6744 13.1797 17.5 14.7427 17.5 16.5V19H6.5V16.5C6.5 14.743 7.32493 13.1798 8.60742 12.1729C9.49879 12.9966 10.6906 13.5 12 13.5C13.3092 13.5 14.5003 12.9963 15.3916 12.1729Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M1.17188 12.6719C1.92319 13.3422 2.91387 13.75 4 13.75C4.61849 13.75 5.20546 13.6167 5.73535 13.3789C5.26621 14.3185 5 15.3781 5 16.5V18H0V15.5C0 14.3954 0.448017 13.3957 1.17188 12.6719Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M22.8271 12.6719C23.5513 13.3958 24 14.3952 24 15.5V18H19V16.5C19 15.3777 18.733 14.3185 18.2637 13.3789C18.7939 13.6167 19.3812 13.75 20 13.75C21.0859 13.75 22.0759 13.3419 22.8271 12.6719Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4 6.75C5.51878 6.75 6.75 7.98122 6.75 9.5C6.75 11.0188 5.51878 12.25 4 12.25C2.48122 12.25 1.25 11.0188 1.25 9.5C1.25 7.98122 2.48122 6.75 4 6.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20 6.75C21.5188 6.75 22.75 7.98122 22.75 9.5C22.75 11.0188 21.5188 12.25 20 12.25C18.4812 12.25 17.25 11.0188 17.25 9.5C17.25 7.98122 18.4812 6.75 20 6.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 5C13.933 5 15.5 6.567 15.5 8.5C15.5 10.433 13.933 12 12 12C10.067 12 8.5 10.433 8.5 8.5C8.5 6.567 10.067 5 12 5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUserGroup;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,sDAEVC,EAAA,cAAC,QACC,EAAE,oMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8LACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uHACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconUserGroup","props","React","CentralIconBase","IconUserGroup_default"]}