@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 • 2.92 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPeopleRemove/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleRemove: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"people-remove, user-remove\">\n <path\n d=\"M11.999 2C9.51374 2 7.49902 4.01472 7.49902 6.5C7.49902 8.98528 9.51374 11 11.999 11C14.4843 11 16.499 8.98528 16.499 6.5C16.499 4.01472 14.4843 2 11.999 2Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.50083 20.4563C3.91209 15.7691 7.21735 12 11.9989 12C14.7929 12 17.0829 13.2869 18.5859 15.292L17.9993 15.8787L15.9993 13.8787L13.8779 16L15.8779 18L13.8779 20L14.8779 21H3.45312L3.50083 20.4563Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.7062 18L20.7062 16L19.9991 15.2928L17.9991 17.2928L15.9991 15.2928L15.292 16L17.292 18L15.292 20L15.9991 20.7071L17.9991 18.7071L19.9991 20.7071L20.7062 20L18.7062 18Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleRemove;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,+JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleRemove","props","React","CentralIconBase","IconPeopleRemove_default"]}