@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.06 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSatellite2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSatellite2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"satellite-2, radar, feed\">\n <path d=\"M7.25 1L2.25 6L4.25 8L9.25 3L7.25 1Z\" fill=\"currentColor\" />\n <path d=\"M10 3.75L5 8.75L7 10.75L12 5.75L10 3.75Z\" fill=\"currentColor\" />\n <path\n d=\"M18.25 12L13.25 17L15.25 19L20.25 14L18.25 12Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21 14.75L16 19.75L18 21.75L23 16.75L21 14.75Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 4.29289L19.7071 9L11.7492 16.9579C11.7715 18.2133 11.3037 19.4757 10.3458 20.4336L9.99229 20.7871L6.95615 17.751L4.5 20.2071L3.79289 19.5L6.24904 17.0439L3.21282 14.0076L3.56637 13.6541C4.5243 12.6961 5.78677 12.2284 7.04213 12.2508L15 4.29289Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSatellite2;\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,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,EACnEA,EAAA,cAAC,QAAK,EAAE,2CAA2C,KAAK,eAAe,EACvEA,EAAA,cAAC,QACC,EAAE,iDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2PACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSatellite2","props","React","CentralIconBase","IconSatellite2_default"]}