File tree Expand file tree Collapse file tree
apps/site/components/Icons/InstallationMethod Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { FC , SVGProps } from 'react' ;
22
3- // This is an empty placeholder for layout purposes.
43const 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
1534export default N ;
You can’t perform that action at this time.
0 commit comments