UNPKG

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

Version:

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

1 lines 2.9 kB
{"version":3,"sources":["../src/IconPeopleRemove2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleRemove2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"people-remove-2\">\n <path\n d=\"M3.5 20.25L2.75329 20.1798L2.67619 21H3.5V20.25ZM18.5 20.25V21H19.3238L19.2467 20.1798L18.5 20.25ZM17.75 10.5H17V12H17.75V10.5ZM22.25 12H23V10.5H22.25V12ZM14 6.5C14 8.15685 12.6569 9.5 11 9.5V11C13.4853 11 15.5 8.98528 15.5 6.5H14ZM11 9.5C9.34315 9.5 8 8.15685 8 6.5H6.5C6.5 8.98528 8.51472 11 11 11V9.5ZM8 6.5C8 4.84315 9.34315 3.5 11 3.5V2C8.51472 2 6.5 4.01472 6.5 6.5H8ZM11 3.5C12.6569 3.5 14 4.84315 14 6.5H15.5C15.5 4.01472 13.4853 2 11 2V3.5ZM4.24671 20.3202C4.58316 16.7412 7.23548 14 11 14V12.5C6.38411 12.5 3.15472 15.9097 2.75329 20.1798L4.24671 20.3202ZM11 14C14.7645 14 17.4168 16.7412 17.7533 20.3202L19.2467 20.1798C18.8453 15.9097 15.6159 12.5 11 12.5V14ZM3.5 21H18.5V19.5H3.5V21ZM17.75 12H22.25V10.5H17.75V12Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleRemove2;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,mBACpCC,EAAA,cAAC,QACC,EAAE,ytBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleRemove2","props","React","CentralIconBase","IconPeopleRemove2_default"]}