Skip to content

Commit

Permalink
Merge pull request #195 from pxblue/feature/update-empty-state-icon-size
Browse files Browse the repository at this point in the history
Feature/update empty state icon size
  • Loading branch information
joebochill authored Sep 9, 2020
2 parents a856b96 + f2bbd6f commit f77564a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/src/core/EmptyState/EmptyState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const useStyles = makeStyles((theme) => ({
icon: {
marginBottom: theme.spacing(2),
display: 'flex',
fontSize: 100,
fontSize: 96,
},
actions: {
marginTop: theme.spacing(1),
Expand Down
2 changes: 1 addition & 1 deletion docs/EmptyState.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `<EmptyState>` component is an element that can be used as a placeholder whe
```tsx
import { EmptyState } from '@pxblue/react-components';

<EmptyState icon={<AlertIcon style={{ fontSize: '100px', marginBottom: '15px' }} />} title={'No Alarms Found'} />;
<EmptyState icon={<AlertIcon fontSize: 'inherit' />} title={'No Alarms Found'} />;
```

## API
Expand Down

0 comments on commit f77564a

Please sign in to comment.