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.54 kB
{"version":3,"sources":["../src/IconTactics1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTactics1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"tactics-1, game-plan,prototype,play\">\n <path\n d=\"M15.9151 2.70996L13.0206 7.05179L14.2687 7.88384L15.7289 5.69345C16.4366 7.63643 15.8495 9.1202 14.8702 10.2953C13.9754 11.3691 12.7955 12.1341 11.9591 12.6763C11.8235 12.7642 11.697 12.8463 11.5821 12.9229L10.9581 13.3389L11.7901 14.587L12.4142 14.1709C12.5097 14.1073 12.6217 14.035 12.7469 13.9542C13.5705 13.423 14.9672 12.522 16.0226 11.2556C17.2226 9.81557 18.0309 7.84563 17.2058 5.37315L19.4249 6.8526L20.257 5.60452L15.9151 2.70996Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.74816 4.75187L2.6875 5.81253L4.75 7.87503L2.6875 9.93753L3.74816 10.9982L5.81066 8.93569L7.87316 10.9982L8.93382 9.93753L6.87132 7.87503L8.93382 5.81253L7.87316 4.75187L5.81066 6.81437L3.74816 4.75187Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.32629 14.3438C4.48821 14.3438 2.99816 15.8338 2.99816 17.6719C2.99816 19.51 4.48821 21 6.32629 21C8.16436 21 9.65441 19.51 9.65441 17.6719C9.65441 15.8338 8.16436 14.3438 6.32629 14.3438Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.1232 15.0644L15.0625 16.125L17.125 18.1875L15.0625 20.25L16.1232 21.3107L18.1857 19.2482L20.2482 21.3107L21.3088 20.25L19.2463 18.1875L21.3088 16.125L20.2482 15.0644L18.1857 17.1269L16.1232 15.0644Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTactics1;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,4bACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTactics1","props","React","CentralIconBase","IconTactics1_default"]}