UNPKG

@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.42 kB
{"version":3,"sources":["../src/IconRescueRing/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRescueRing: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"rescue-ring, swim-boyle, help, support\"\n >\n <path\n d=\"M4.41837 5.479C2.91113 7.22982 2 9.50846 2 11.9999C2 14.4914 2.91116 16.7701 4.41844 18.5209L8.33198 14.6074C7.80811 13.8717 7.5 12.9718 7.5 11.9999C7.5 11.0281 7.80808 10.1282 8.33191 9.39255L4.41837 5.479Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.48047 4.41842L9.39401 8.33196C10.1296 7.8081 11.0296 7.5 12.0014 7.5C12.9733 7.5 13.8733 7.80811 14.6089 8.33198L18.5224 4.41844C16.7716 2.91116 14.4929 2 12.0014 2C9.50996 2 7.23129 2.91115 5.48047 4.41842Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.5816 5.479L15.668 9.39255C16.1919 10.1282 16.4999 11.028 16.4999 11.9999C16.4999 12.9718 16.1918 13.8717 15.668 14.6073L19.5815 18.5209C21.0888 16.7701 21.9999 14.4914 21.9999 11.9999C21.9999 9.50845 21.0888 7.22982 19.5816 5.479Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.5223 19.5815L14.6087 15.668C13.8731 16.1918 12.9732 16.4999 12.0014 16.4999C11.0295 16.4999 10.1296 16.1918 9.39402 15.668L5.48047 19.5815C7.23128 21.0888 9.50992 21.9999 12.0014 21.9999C14.4928 21.9999 16.7715 21.0888 18.5223 19.5815Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRescueRing;\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,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRescueRing","props","React","CentralIconBase","IconRescueRing_default"]}