@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.34 kB
Source Map (JSON)
{"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.58414 5.29131C2.97819 7.06544 2 9.41849 2 12C2 14.5816 2.97822 16.9346 4.58421 18.7088L8.48409 14.8089C7.86825 14.0391 7.5 13.0625 7.5 12C7.5 10.9375 7.86823 9.96102 8.48402 9.19119L4.58414 5.29131Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.29124 4.5842L9.19112 8.48408C9.96096 7.86825 10.9375 7.5 12 7.5C13.0625 7.5 14.0391 7.86825 14.8089 8.48409L18.7088 4.58421C16.9346 2.97822 14.5816 2 12 2C9.41846 2 7.06539 2.97822 5.29124 4.5842Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M19.4159 5.29132L15.516 9.19121C16.1318 9.96104 16.5 10.9375 16.5 12C16.5 13.0625 16.1318 14.039 15.5159 14.8089L19.4158 18.7088C21.0218 16.9346 22 14.5815 22 12C22 9.41849 21.0218 7.06546 19.4159 5.29132Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.7087 19.4159L14.8088 15.516C14.039 16.1318 13.0625 16.5 12 16.5C10.9375 16.5 9.96104 16.1318 9.19121 15.516L5.29132 19.4159C7.06546 21.0218 9.4185 22 12 22C14.5815 22 16.9346 21.0218 18.7087 19.4159Z\"\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,4MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRescueRing","props","React","CentralIconBase","IconRescueRing_default"]}