@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.1 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconUserDuo/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconUserDuo: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"user-duo, team, members, persons\">\n <path\n d=\"M12.0723 12.3086C13.8442 13.5787 15 15.6536 15 18V20H1V18C1 15.6539 2.1552 13.5787 3.92676 12.3086C4.96788 13.3534 6.40846 14 8 14C9.5913 14 11.0312 13.3532 12.0723 12.3086Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.4014 12.626C22.3886 13.6202 23 14.9882 23 16.5V19H16.5V18C16.5 16.5965 16.158 15.2734 15.5557 14.1074C16.1534 14.36 16.8103 14.5 17.5 14.5C19.0783 14.5 20.485 13.7682 21.4014 12.626Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.5 6C19.433 6 21 7.567 21 9.5C21 11.433 19.433 13 17.5 13C15.567 13 14 11.433 14 9.5C14 7.567 15.567 6 17.5 6Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8 4C10.3472 4 12.25 5.90279 12.25 8.25C12.25 10.5972 10.3472 12.5 8 12.5C5.65279 12.5 3.75 10.5972 3.75 8.25C3.75 5.90279 5.65279 4 8 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUserDuo;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oCACpCC,EAAA,cAAC,QACC,EAAE,gLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6LACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oHACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4IACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconUserDuo","props","React","CentralIconBase","IconUserDuo_default"]}