-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add WinGet as a listed way to install Node.js
- Loading branch information
1 parent
01ffa2a
commit 20fb2d7
Showing
6 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { FC, SVGProps } from 'react'; | ||
|
||
const WinGet: FC<SVGProps<SVGSVGElement>> = props => ( | ||
// TODO: Use real svg for WinGet: https://github.com/microsoft/winget-cli/issues/4691 | ||
// For now, the Windows logo is used as a placeholder | ||
<svg | ||
width="32" | ||
height="32" | ||
viewBox="0 0 32 32" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<path fill="#FEBA08" d="M17 17h10v10H17z" /> | ||
<path fill="#05A6F0" d="M5 17h10v10H5z" /> | ||
<path fill="#80BC06" d="M17 5h10v10H17z" /> | ||
<path fill="#F25325" d="M5 5h10v10H5z" /> | ||
</svg> | ||
); | ||
|
||
export default WinGet; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters