UNPKG

@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 3.07 kB
{"version":3,"sources":["../src/IconGroup3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGroup3: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"group-3\">\n <path\n d=\"M3.99951 7C3.99951 4.79086 5.79037 3 7.99951 3C10.2087 3 11.9995 4.79086 11.9995 7C11.9995 9.20914 10.2087 11 7.99951 11C5.79037 11 3.99951 9.20914 3.99951 7Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.9995 7.5C12.9995 5.567 14.5665 4 16.4995 4C18.4325 4 19.9995 5.567 19.9995 7.5C19.9995 9.433 18.4325 11 16.4995 11C14.5665 11 12.9995 9.433 12.9995 7.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.9983 20.4667C14.6299 14.9539 11.4103 12 7.99937 12C4.58839 12 1.36884 14.9539 1.00048 20.4667L0.964844 21H15.0339L14.9983 20.4667Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.9644 20C15.6896 17.0349 14.6034 14.6962 13.0526 13.1468C14.0821 12.3884 15.2795 12 16.4994 12C19.6525 12 22.6549 14.5951 22.9981 19.4648L23.0359 20H15.9644Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGroup3;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup3","props","React","CentralIconBase","IconGroup3_default"]}