@central-icons-react/square-outlined-radius-0-stroke-1.5
Version:
A collection of square outlined React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.24 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSoccer/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSoccer: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"soccer, football, mls\">\n <path\n d=\"M8.57915 3.40315L12 5.88854L15.4209 3.40315M8.57915 3.40315C9.6373 2.98172 10.7916 2.75 12 2.75C13.2084 2.75 14.3627 2.98172 15.4209 3.40315M8.57915 3.40315C7.13065 3.98003 5.86229 4.9124 4.88182 6.0925M4.88182 6.0925C3.55053 7.69486 2.75 9.75394 2.75 12C2.75 12.2 2.75635 12.3985 2.76885 12.5954M4.88182 6.0925L6.18766 10.1115L2.76885 12.5954M2.76885 12.5954C2.87003 14.1882 3.37434 15.6714 4.18088 16.9443M4.18088 16.9443H8.40778L9.71434 20.9654M4.18088 16.9443C5.42752 18.9117 7.39622 20.3763 9.71434 20.9654M9.71434 20.9654C10.4454 21.1513 11.2112 21.25 12 21.25C12.7888 21.25 13.5546 21.1513 14.2857 20.9654M14.2857 20.9654L15.5922 16.9443H19.8191M14.2857 20.9654C16.6038 20.3763 18.5725 18.9117 19.8191 16.9443M19.8191 16.9443C20.6257 15.6714 21.13 14.1882 21.2311 12.5954M21.2311 12.5954C21.2437 12.3985 21.25 12.2 21.25 12C21.25 9.75394 20.4495 7.69486 19.1182 6.0925M21.2311 12.5954L17.8123 10.1115L19.1182 6.0925M19.1182 6.0925C18.1377 4.9124 16.8693 3.98003 15.4209 3.40315M12 8.75L15.0909 10.9957L13.9103 14.6293H10.0897L8.90907 10.9957L12 8.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSoccer;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,EAAE,oiCACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSoccer","props","React","CentralIconBase","IconSoccer_default"]}