@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 • 3.06 kB
Source Map (JSON)
{"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=\"M3.5 20.25L2.75329 20.1798L2.67619 21H3.5V20.25ZM18.5 20.25V21H19.3238L19.2467 20.1798L18.5 20.25ZM20.25 8.75V8H18.75V8.75H20.25ZM18.75 14.25V15H20.25V14.25H18.75ZM16.75 10.75H16V12.25H16.75V10.75ZM22.25 12.25H23V10.75H22.25V12.25ZM14 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.5V21ZM18.75 8.75V11.5H20.25V8.75H18.75ZM18.75 11.5V14.25H20.25V11.5H18.75ZM16.75 12.25H19.5V10.75H16.75V12.25ZM19.5 12.25H22.25V10.75H19.5V12.25Z\"\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,o5BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleAdd2","props","React","CentralIconBase","IconPeopleAdd2_default"]}