@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 • 2.96 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconTactics2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTactics2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"tactics-2, game-plan,prototype,play\">\n <path\n d=\"M17.5 2.79285L16.7929 3.49995L18.7929 5.49995H11.5V17.5H8.95852C8.72048 16.0811 7.4865 15 6 15C4.34315 15 3 16.3431 3 18C3 19.6568 4.34315 21 6 21C7.4865 21 8.72048 19.9188 8.95852 18.5H12.5V6.49995H18.7929L16.7929 8.49995L17.5 9.20706L20.7071 5.99995L17.5 2.79285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M4 3.29285L3.29289 3.99995L5.29289 5.99995L3.29289 7.99995L4 8.70706L6 6.70706L8 8.70706L8.70711 7.99995L6.70711 5.99995L8.70711 3.99995L8 3.29285L6 5.29285L4 3.29285Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16 15.2928L15.2929 16L17.2929 18L15.2929 20L16 20.7071L18 18.7071L20 20.7071L20.7071 20L18.7071 18L20.7071 16L20 15.2928L18 17.2928L16 15.2928Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTactics2;\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,4QACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0KACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTactics2","props","React","CentralIconBase","IconTactics2_default"]}