Skip to content

Commit

Permalink
use theme color for icons
Browse files Browse the repository at this point in the history
  • Loading branch information
myxmaster committed May 20, 2024
1 parent 8800627 commit 5e2e04e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions views/Settings/LightningAddress/NostrRelays.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ export default class NostrRelays extends React.Component<
icon={{
name: 'plus',
type: 'font-awesome',
size: 25
size: 25,
color: themeColor('text')
}}
iconOnly
onPress={async () => {
Expand Down Expand Up @@ -244,7 +245,10 @@ export default class NostrRelays extends React.Component<
icon={{
name: 'minus',
type: 'font-awesome',
size: 25
size: 25,
color: themeColor(
'text'
)
}}
iconOnly
onPress={async () => {
Expand Down

0 comments on commit 5e2e04e

Please sign in to comment.