-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathN.tsx
More file actions
34 lines (32 loc) · 796 Bytes
/
N.tsx
File metadata and controls
34 lines (32 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { FC, SVGProps } from 'react';
const N: FC<SVGProps<SVGSVGElement>> = props => (
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
// terminal background (with border for on black background)
<rect
x="0"
y="0"
width="32"
height="32"
fill="#1e1e1e"
stroke="#ffffff"
strokeWidth="2"
rx="5"
/>
// close, minimize, maximize buttons
<circle cx="5" cy="5" r="2" fill="#ff5f56" />
<circle cx="10" cy="5" r="2" fill="#ffbd2e" />
<circle cx="15" cy="5" r="2" fill="#27c93f" />
// text with outline
<text x="6" y="24" fontFamily="monospace" fontSize="14" fill="#00ff00">
$n
</text>
</svg>
);
export default N;