Skip to content

Commit 4f7297b

Browse files
committed
Add logo for n download method
1 parent 57d095c commit 4f7297b

1 file changed

Lines changed: 21 additions & 2 deletions

File tree

  • apps/site/components/Icons/InstallationMethod
Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { FC, SVGProps } from 'react';
22

3-
// This is an empty placeholder for layout purposes.
43
const N: FC<SVGProps<SVGSVGElement>> = props => (
54
<svg
65
width="32"
@@ -9,7 +8,27 @@ const N: FC<SVGProps<SVGSVGElement>> = props => (
98
fill="none"
109
xmlns="http://www.w3.org/2000/svg"
1110
{...props}
12-
></svg>
11+
>
12+
// terminal background (with border for on black background)
13+
<rect
14+
x="0"
15+
y="0"
16+
width="32"
17+
height="32"
18+
fill="#1e1e1e"
19+
stroke="#ffffff"
20+
strokeWidth="2"
21+
rx="5"
22+
/>
23+
// close, minimize, maximize buttons
24+
<circle cx="5" cy="3" r="3" fill="#ff5f56" />
25+
<circle cx="12" cy="3" r="3" fill="#ffbd2e" />
26+
<circle cx="19" cy="3" r="3" fill="#27c93f" />
27+
// text with outline
28+
<text x="6" y="22" fontFamily="monospace" fontSize="14" fill="#00ff00">
29+
$n
30+
</text>
31+
</svg>
1332
);
1433

1534
export default N;

0 commit comments

Comments
 (0)