@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.01 kB
Source Map (JSON)
{"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.5C13.5 4.01472 11.4853 2 9 2C6.51472 2 4.5 4.01472 4.5 6.5C4.5 8.98528 6.51472 11 9 11C11.4853 11 13.5 8.98528 13.5 6.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.5 6.5C18.5 4.567 16.933 3 15 3H14.5L14.5 2H15C17.4853 2 19.5 4.01472 19.5 6.5C19.5 8.98528 17.4853 11 15 11H14.5V10H15C16.933 10 18.5 8.433 18.5 6.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9 12.5C13.6757 12.5 17.5 16.3395 17.5 20.5V21H0.5V20.5C0.5 16.3395 4.32434 12.5 9 12.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.3444 13.8746C20.1832 14.8041 22.2469 17.3221 22.4783 20H19.5V21H23.5V20.5C23.5 17.1552 21.0285 14.0287 17.6556 12.9243L17.1804 12.7687L16.8692 13.719L17.3444 13.8746Z\"\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,mIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2FACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6KACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup1","props","React","CentralIconBase","IconGroup1_default"]}