Skip to content

Commit

Permalink
Remove DateIcon from claims until spacing is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Nov 19, 2019
1 parent d7d4696 commit 1225835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/claims/PreviousClaims.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Button from '../../components/Button';
import { Chip, Typography, Divider, Grid, Paper, createMuiTheme } from '@material-ui/core';
import ThemeProvider from '@material-ui/styles/ThemeProvider';
import colors from '../../config/colors-config';
import DateIcon from '@material-ui/icons/AccessTime';
// import DateIcon from '@material-ui/icons/AccessTime';
import ProofIcon from '@material-ui/icons/Fingerprint';
import moment from 'moment';
import styled from 'styled-components';
Expand Down Expand Up @@ -50,7 +50,7 @@ function PreviousClaims(props) {
</div>
<Divider style={{ margin: '10px 0' }} variant="middle" />
<ThemeProvider theme={chipTheme}>
<Chip key="0" color="primary" icon={<DateIcon />} label={date} style={{ margin: '0 7px 7px 0' }} />
<Chip key="0" color="primary" label={date} style={{ margin: '0 7px 7px 0' }} />
</ThemeProvider>
{status === 'gotRejected' && (
<span
Expand Down

0 comments on commit 1225835

Please sign in to comment.