UNPKG

@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.27 kB
{"version":3,"sources":["../src/IconPeopleLike/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleLike: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"people-like, inner circle\">\n <path\n d=\"M7.5 6.5C7.5 4.01472 9.51472 2 12 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.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.9989 12C7.21735 12 3.91209 15.7691 3.50083 20.4563L3.45312 21H14.6904C13.8735 20.2209 12.999 19.0597 12.999 17.5846C12.999 16.4861 13.3486 15.5167 14.0124 14.8087C14.6688 14.1085 15.555 13.7513 16.4435 13.7513C16.7091 13.7513 16.957 13.7781 17.1855 13.8226C15.7957 12.6804 14.0305 12 11.9989 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.2247 21.6901C16.8793 21.5127 16.4158 21.2473 15.9493 20.896C15.0393 20.211 14 19.1085 14 17.6089C14 16.4937 14.5616 15.5744 15.3947 15.0978C16.1545 14.6631 17.1099 14.6145 18 15.0739C18.8901 14.6145 19.8455 14.6631 20.6053 15.0978C21.4384 15.5744 22 16.4937 22 17.6089C22 19.1085 20.9607 20.211 20.0507 20.896C19.5842 21.2473 19.1207 21.5127 18.7753 21.6901C18.5214 21.8205 18.2645 21.9332 18 22.0374C17.7355 21.9332 17.4786 21.8205 17.2247 21.6901Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleLike;\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,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,oIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8SACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wcACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleLike","props","React","CentralIconBase","IconPeopleLike_default"]}