@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.
1 lines • 3.2 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.8198 3.57799L12 5.88854L15.1802 3.57799M8.8198 3.57799C9.80859 3.20443 10.8804 3 12 3C13.1196 3 14.1914 3.20443 15.1802 3.57799M8.8198 3.57799C7.2983 4.15282 5.97341 5.12811 4.97371 6.37531M4.97371 6.37531C3.73871 7.91606 3 9.87176 3 12C3 12.1409 3.00324 12.2811 3.00965 12.4204M4.97371 6.37531L6.18766 10.1115L3.00965 12.4204M3.00965 12.4204C3.08627 14.0867 3.61602 15.6348 4.47854 16.9443M4.47854 16.9443H8.40778L9.62244 20.6826M4.47854 16.9443C5.66664 18.748 7.48614 20.099 9.62244 20.6826M9.62244 20.6826C10.3798 20.8895 11.177 21 12 21C12.823 21 13.6202 20.8895 14.3776 20.6826M14.3776 20.6826L15.5922 16.9443H19.5215M14.3776 20.6826C16.5139 20.099 18.3334 18.748 19.5215 16.9443M19.5215 16.9443C20.384 15.6348 20.9137 14.0867 20.9904 12.4204M20.9904 12.4204C20.9968 12.2811 21 12.1409 21 12C21 9.87176 20.2613 7.91606 19.0263 6.37531M20.9904 12.4204L17.8123 10.1115L19.0263 6.37531M19.0263 6.37531C18.0266 5.12811 16.7017 4.15282 15.1802 3.57799M12 9L14.8532 11.0729L13.7634 14.4271H10.2366L9.14683 11.0729L12 9Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\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,ggCACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSoccer","props","React","CentralIconBase","IconSoccer_default"]}