UNPKG

@central-icons-react/square-outlined-radius-0-stroke-2

Version:

A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.

1 lines 2.92 kB
{"version":3,"sources":["../src/IconPeopleAdd2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleAdd2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"people-add-2\">\n <path\n d=\"M2.5 20L1.50439 19.9064L1.40158 21H2.5V20ZM17.5 20V21H18.5984L18.4956 19.9064L17.5 20ZM20 8V7H18V8H20ZM18 14V15H20V14H18ZM16 10H15V12H16V10ZM22 12H23V10H22V12ZM12.5 6.5C12.5 7.88071 11.3807 9 10 9V11C12.4853 11 14.5 8.98528 14.5 6.5H12.5ZM10 9C8.61929 9 7.5 7.88071 7.5 6.5H5.5C5.5 8.98528 7.51472 11 10 11V9ZM7.5 6.5C7.5 5.11929 8.61929 4 10 4V2C7.51472 2 5.5 4.01472 5.5 6.5H7.5ZM10 4C11.3807 4 12.5 5.11929 12.5 6.5H14.5C14.5 4.01472 12.4853 2 10 2V4ZM3.49561 20.0936C3.82124 16.6298 6.37737 14 10 14V12C5.24222 12 1.91665 15.5211 1.50439 19.9064L3.49561 20.0936ZM10 14C13.6226 14 16.1788 16.6298 16.5044 20.0936L18.4956 19.9064C18.0834 15.5211 14.7578 12 10 12V14ZM2.5 21H17.5V19H2.5V21ZM18 8V11H20V8H18ZM18 11V14H20V11H18ZM16 12H19V10H16V12ZM19 12H22V10H19V12Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleAdd2;\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,gBACpCC,EAAA,cAAC,QACC,EAAE,gwBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleAdd2","props","React","CentralIconBase","IconPeopleAdd2_default"]}