@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.17 kB
Source Map (JSON)
{"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=\"M3.46045 7.00001C3.46045 4.76963 5.26853 2.96155 7.49891 2.96155C9.72929 2.96155 11.5374 4.76963 11.5374 7.00001C11.5374 9.23039 9.72929 11.0385 7.49891 11.0385C5.26853 11.0385 3.46045 9.23039 3.46045 7.00001Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.501 7C12.501 4.79086 14.2918 3 16.501 3C18.7101 3 20.501 4.79086 20.501 7C20.501 9.20914 18.7101 11 16.501 11C14.2918 11 12.501 9.20914 12.501 7Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.4964 20.4649C14.1258 15.2076 10.888 12.4188 7.4995 12.4188C4.11097 12.4188 0.873156 15.2076 0.502568 20.4649L0.464844 21H14.5342L14.4964 20.4649Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.4936 20.3945L15.5363 21H23.5339L23.4961 20.4649C23.1255 15.2076 19.8877 12.4188 16.4992 12.4188C15.1742 12.4188 13.8723 12.8452 12.7559 13.6788C14.2558 15.2171 15.2895 17.4988 15.4936 20.3945Z\"\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,oNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup2","props","React","CentralIconBase","IconGroup2_default"]}