File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -257,12 +257,14 @@ const ShareModal: React.FC<ShareModalProps> = ({
257
257
< PublicIcon
258
258
width = { 24 }
259
259
height = { 24 }
260
+ fill = { theme . palette . icon . default }
260
261
stroke = { theme . palette . mode === 'dark' ? WHITE : BLACK }
261
262
/>
262
263
) : (
263
264
< LockIcon
264
265
width = { 24 }
265
266
height = { 24 }
267
+ fill = { theme . palette . icon . default }
266
268
stroke = { theme . palette . mode === 'dark' ? WHITE : BLACK }
267
269
/>
268
270
) }
@@ -289,7 +291,13 @@ const ShareModal: React.FC<ShareModalProps> = ({
289
291
</ MenuItem >
290
292
) ) }
291
293
</ CustomSelect >
292
- < Typography component = "span" variant = "body2" >
294
+ < Typography
295
+ sx = { {
296
+ color : theme . palette . text . secondary
297
+ } }
298
+ component = "span"
299
+ variant = "body2"
300
+ >
293
301
{ selectedOption === SHARE_MODE . PRIVATE ? options . PRIVATE : options . PUBLIC }
294
302
</ Typography >
295
303
</ div >
You can’t perform that action at this time.
0 commit comments