Skip to content

Commit 6830b51

Browse files
committed
Use info icon instead of question mark
1 parent e3303c5 commit 6830b51

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

package-lock.json

Lines changed: 28 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BaseTable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import TablePagination from '@material-ui/core/TablePagination';
1111
import TableRow from '@material-ui/core/TableRow';
1212

1313
import Checkbox from '@material-ui/core/Checkbox';
14-
import HelpOutline from '@material-ui/icons/HelpOutline'
14+
import InfoOutlined from '@material-ui/icons/InfoOutlined'
1515

1616
import { Div } from 'glamorous'
1717

@@ -75,7 +75,7 @@ class ColumnTitle extends React.Component {
7575
<SchemaPopover schema={this.props.schema}>
7676
<Div display="inline-flex" cursor="default">
7777
<Div marginRight="5px">{this.props.children}</Div>
78-
<HelpOutline style={infoOutlineFontSize}/>
78+
<InfoOutlined style={infoOutlineFontSize}/>
7979
</Div>
8080
</SchemaPopover>
8181
</TableCell>

src/Editor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import Select from '@material-ui/core/Select'
1818
import Add from '@material-ui/icons/Add'
1919
import Delete from '@material-ui/icons/Delete'
2020
import Edit from '@material-ui/icons/Edit'
21-
import HelpOutline from '@material-ui/icons/HelpOutline'
21+
import InfoOutlined from '@material-ui/icons/InfoOutlined'
2222
import IconButton from '@material-ui/core/IconButton';
2323

2424
import BaseTable, { BASE_EDITOR_PROPTYPES } from './BaseTable'
@@ -205,7 +205,7 @@ const BasicToolbar = props => {
205205
<SchemaPopover schema={props.schema}>
206206
<Div display="inline-flex" alignItems="center" cursor="default">
207207
<Div marginRight="5px"><Typography variant="title">{ props.title }</Typography></Div>
208-
<HelpOutline style={{ fontSize: '1em' }}/>
208+
<InfoOutlined style={{ fontSize: '1em' }}/>
209209
</Div>
210210
</SchemaPopover>
211211
</Toolbar>

0 commit comments

Comments
 (0)