@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.28 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconIceHockey/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconIceHockey: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ice-hockey\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.7381 7.5438C1.21792 8.01168 1 8.46242 1 8.875C1 9.28758 1.21792 9.73832 1.7381 10.2062C2.25812 10.6739 3.03877 11.1181 4.04606 11.5013C6.05714 12.2664 8.86915 12.75 12 12.75C15.1309 12.75 17.9429 12.2664 19.9539 11.5013C20.9612 11.1181 21.7419 10.6739 22.2619 10.2062C22.7821 9.73832 23 9.28758 23 8.875C23 8.46242 22.7821 8.01168 22.2619 7.5438C21.7419 7.07607 20.9612 6.63194 19.9539 6.24873C17.9429 5.48365 15.1309 5 12 5C8.86915 5 6.05714 5.48365 4.04606 6.24873C3.03877 6.63194 2.25812 7.07607 1.7381 7.5438ZM23 10.886C22.9772 10.9074 22.9541 10.9286 22.9306 10.9497C22.2868 11.5288 21.3833 12.0274 20.3095 12.4359C18.1584 13.2543 15.2204 13.75 12 13.75C8.77958 13.75 5.84159 13.2543 3.69049 12.4359C2.61668 12.0274 1.7132 11.5288 1.06936 10.9497C1.04595 10.9286 1.02282 10.9074 1 10.886V15.125C1 15.5376 1.21792 15.9883 1.7381 16.4562C2.25812 16.9239 3.03877 17.3681 4.04606 17.7513C6.05714 18.5164 8.86915 19 12 19C15.1309 19 17.9429 18.5164 19.9539 17.7513C20.9612 17.3681 21.7419 16.9239 22.2619 16.4562C22.7821 15.9883 23 15.5376 23 15.125V10.886Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIceHockey;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,cACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uiCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconIceHockey","props","React","CentralIconBase","IconIceHockey_default"]}