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.25 kB
{"version":3,"sources":["../src/IconPeopleGear/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleGear: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-gear, user-settings, preferences, person\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5088 14.6357L21.2363 14.3555L22.0488 15.7627L20.9609 17.1807L22.125 18.6055L21.3125 20.0127L19.54 19.7803L18.8887 21.5H17.2637L16.5449 19.7686L14.6875 20.0127L13.875 18.6055L15.0371 17.1807L13.9512 15.7627L14.7637 14.3555L16.5781 14.6504L17.2637 13H18.8887L19.5088 14.6357ZM18 15.5C17.0335 15.5 16.25 16.2835 16.25 17.25C16.25 18.2165 17.0335 19 18 19C18.9665 19 19.75 18.2165 19.75 17.25C19.75 16.2835 18.9665 15.5 18 15.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 12.5C12.8274 12.5 13.6099 12.611 14.3398 12.8154C13.0635 13.8701 12.25 15.465 12.25 17.25C12.25 18.6834 12.776 19.993 13.6436 21H3.67578L3.75293 20.1797C4.15441 15.9096 7.38416 12.5 12 12.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 2C14.4853 2 16.5 4.01472 16.5 6.5C16.5 8.98528 14.4853 11 12 11C9.51472 11 7.5 8.98528 7.5 6.5C7.5 4.01472 9.51472 2 12 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleGear;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,mDAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,+aACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleGear","props","React","CentralIconBase","IconPeopleGear_default"]}