mirror of
https://github.com/status-im/safe-react.git
synced 2025-02-17 12:07:09 +00:00
Fix icons on send and receive buttons (#962)
This commit is contained in:
parent
de4d564955
commit
2eeb9fc094
@ -1,7 +1,7 @@
|
|||||||
import { withStyles } from '@material-ui/core/styles'
|
import { withStyles } from '@material-ui/core/styles'
|
||||||
// import CallMade from '@material-ui/icons/CallMade'
|
import CallMade from '@material-ui/icons/CallMade'
|
||||||
// import CallReceived from '@material-ui/icons/CallReceived'
|
import CallReceived from '@material-ui/icons/CallReceived'
|
||||||
// import classNames from 'classnames/bind'
|
import classNames from 'classnames/bind'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { useSelector } from 'react-redux'
|
import { useSelector } from 'react-redux'
|
||||||
|
|
||||||
@ -55,7 +55,11 @@ const LayoutHeader = (props) => {
|
|||||||
size="small"
|
size="small"
|
||||||
variant="contained"
|
variant="contained"
|
||||||
>
|
>
|
||||||
{/* <CallMade alt="Send Transaction" className={classNames(classes.leftIcon, classes.iconSmall)} /> */}
|
<CallMade
|
||||||
|
alt="Send Transaction"
|
||||||
|
className={classNames(classes.leftIcon, classes.iconSmall)}
|
||||||
|
component={undefined}
|
||||||
|
/>
|
||||||
Send
|
Send
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
@ -65,7 +69,11 @@ const LayoutHeader = (props) => {
|
|||||||
size="small"
|
size="small"
|
||||||
variant="contained"
|
variant="contained"
|
||||||
>
|
>
|
||||||
{/* <CallReceived alt="Receive Transaction" className={classNames(classes.leftIcon, classes.iconSmall)} /> */}
|
<CallReceived
|
||||||
|
alt="Receive Transaction"
|
||||||
|
className={classNames(classes.leftIcon, classes.iconSmall)}
|
||||||
|
component={undefined}
|
||||||
|
/>
|
||||||
Receive
|
Receive
|
||||||
</Button>
|
</Button>
|
||||||
</Block>
|
</Block>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user