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.06 kB
{"version":3,"sources":["../src/IconGroup1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGroup1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"group-1, users\">\n <path\n d=\"M13.5 6.25C13.5 3.90279 11.5972 2 9.25 2C6.90279 2 5 3.90279 5 6.25C5 8.59721 6.90279 10.5 9.25 10.5C11.5972 10.5 13.5 8.59721 13.5 6.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.75 6.25C17.75 4.73122 16.5188 3.5 15 3.5H14.25V2H15C17.3472 2 19.25 3.90279 19.25 6.25C19.25 8.59721 17.3472 10.5 15 10.5H14.25V9H15C16.5188 9 17.75 7.76878 17.75 6.25Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.25 12C14.158 12 18.25 15.7578 18.25 20.2188V20.9688H0.25V20.2188C0.25 15.7578 4.34204 12 9.25 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.9996 14.2157C20.4023 15.0667 22.1354 17.1885 22.449 19.4999H20V20.9999L24 20.9999V20.2499C24 16.9655 21.7033 13.9362 18.5004 12.8018L17.7934 12.5514L17.2926 13.9653L17.9996 14.2157Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGroup1;\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,4IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4LACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup1","props","React","CentralIconBase","IconGroup1_default"]}