@@ -34,6 +34,7 @@ import { PlanPicker } from './account/plan-picker';
3434import { ModalOverlay } from './account/modal-overlay' ;
3535import { CheckoutSpinner } from './account/checkout-spinner' ;
3636import { HtmlContextMenu } from './html-context-menu' ;
37+ import { Icons } from '../icons' ;
3738
3839const AppContainer = styled . div < { inert ?: boolean } > `
3940 display: flex;
@@ -109,15 +110,15 @@ class App extends React.Component<{
109110 {
110111 name : 'Intercept' ,
111112 title : `Connect clients to HTTP Toolkit (${ Ctrl } +1)` ,
112- icon : [ 'fas' , 'plug' ] ,
113+ icon : Icons . Plugs ,
113114 position : 'top' ,
114115 type : 'router' ,
115116 url : '/intercept'
116117 } ,
117118 {
118119 name : 'View' ,
119120 title : `View intercepted HTTP traffic (${ Ctrl } +2)` ,
120- icon : [ 'fas' , 'search' ] ,
121+ icon : Icons . MagnifyingGlass ,
121122 position : 'top' ,
122123 type : 'router' ,
123124 url : '/view'
@@ -133,7 +134,7 @@ class App extends React.Component<{
133134 ? [ {
134135 name : 'Mock' ,
135136 title : `Add rules to mock & rewrite HTTP traffic (${ Ctrl } +3)` ,
136- icon : [ 'fas' , 'theater-masks' ] ,
137+ icon : Icons . Pencil ,
137138 position : 'top' ,
138139 type : 'router' ,
139140 url : '/mock'
@@ -145,7 +146,7 @@ class App extends React.Component<{
145146 ? [ {
146147 name : 'Send' ,
147148 title : `Send HTTP requests directly (${ Ctrl } +4)` ,
148- icon : [ 'far' , 'paper-plane' ] ,
149+ icon : Icons . PaperPlaneTilt ,
149150 position : 'top' ,
150151 type : 'router' ,
151152 url : '/send'
@@ -157,15 +158,15 @@ class App extends React.Component<{
157158 ? {
158159 name : 'Settings' ,
159160 title : `Reconfigure HTTP Toolkit and manage your account (${ Ctrl } +9)` ,
160- icon : [ 'fas' , 'cog' ] ,
161+ icon : Icons . GearSix ,
161162 position : 'bottom' ,
162163 type : 'router' ,
163164 url : '/settings'
164165 }
165166 : {
166167 name : 'Get Pro' ,
167168 title : "Sign up for HTTP Toolkit Pro" ,
168- icon : [ 'far' , 'star' ] ,
169+ icon : Icons . Star ,
169170 position : 'bottom' ,
170171 type : 'callback' ,
171172 onClick : ( ) => this . props . accountStore . getPro ( 'sidebar' )
@@ -175,7 +176,7 @@ class App extends React.Component<{
175176 {
176177 name : 'Give feedback' ,
177178 title : "Suggest features or report issues" ,
178- icon : [ 'far' , 'comment' ] ,
179+ icon : Icons . ChatText ,
179180 position : 'bottom' ,
180181 highlight : true ,
181182 type : 'web' ,
0 commit comments