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.34 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.47909C2.91113 7.2299 2 9.50855 2 12C2 14.4915 2.91116 16.7702 4.41844 18.521L8.33198 14.6075C7.80811 13.8718 7.5 12.9719 7.5 12C7.5 11.0281 7.80808 10.1282 8.33191 9.39263L4.41837 5.47909Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.47902 4.41842L9.39256 8.33196C10.1282 7.8081 11.0281 7.5 12 7.5C12.9719 7.5 13.8718 7.80811 14.6075 8.33198L18.521 4.41844C16.7702 2.91116 14.4915 2 12 2C9.50852 2 7.22985 2.91115 5.47902 4.41842Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.5816 5.4791L15.6681 9.39265C16.1919 10.1283 16.5 11.0282 16.5 12C16.5 12.9719 16.1919 13.8718 15.668 14.6074L19.5816 18.521C21.0888 16.7702 22 14.4915 22 12C22 9.50856 21.0889 7.22992 19.5816 5.4791Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.5209 19.5816L14.6074 15.6681C13.8718 16.1919 12.9719 16.5 12 16.5C11.0282 16.5 10.1283 16.1919 9.39265 15.6681L5.4791 19.5816C7.22992 21.0889 9.50856 22 12 22C14.4915 22 16.7701 21.0889 18.5209 19.5816Z\"\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,0MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRescueRing","props","React","CentralIconBase","IconRescueRing_default"]}