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.25 kB
{"version":3,"sources":["../src/IconRadar/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar, location, search\">\n <path\n d=\"M6.43203 3.69227C3.75903 5.4873 2 8.53823 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 8.53823 20.241 5.4873 17.568 3.69227L15.5351 7.08038C17.0285 8.17106 18 9.93629 18 11.9288C18 15.2425 15.3137 17.9288 12 17.9288C8.68629 17.9288 6 15.2425 6 11.9288C6 9.93629 6.97152 8.17107 8.4649 7.08039L6.43203 3.69227Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.0183 11.2749L15.0181 7.94205C16.223 8.85564 17 10.3017 17 11.9288C17 14.6903 14.7614 16.9288 12 16.9288C9.23858 16.9288 7 14.6903 7 11.9288C7 10.3017 7.77699 8.85565 8.9819 7.94206L10.9816 11.275C10.8358 11.4794 10.75 11.7297 10.75 12C10.75 12.6904 11.3096 13.25 12 13.25C12.6904 13.25 13.25 12.6904 13.25 12C13.25 11.7297 13.1642 11.4794 13.0183 11.2749Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12.1609 10.7603L16.711 3.17696C15.3072 2.42588 13.7034 2 12 2C10.2967 2 8.69277 2.42588 7.28903 3.17696L11.839 10.7603C11.8917 10.7535 11.9455 10.75 12 10.75C12.0545 10.75 12.1083 10.7535 12.1609 10.7603Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadar;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,0UACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0WACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRadar","props","React","CentralIconBase","IconRadar_default"]}