Skip to content

Commit

Permalink
fix: broken image color
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Oct 6, 2019
1 parent 24e3d44 commit 85005b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/Image.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const ImageLoader = ({ classes, style }) => (
)

const BrokenImage = ({ classes, style }) => (
<div className={classes.wrapper} style={style}>
<BrokenImageIcon color="white" />
<div className={classes.wrapper} style={{ ...style, color: 'white' }}>
<BrokenImageIcon color="inherit" />
</div>
)

Expand Down

0 comments on commit 85005b3

Please sign in to comment.