diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/gameSettings.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/gameSettings.tsx b/components/gameSettings.tsx index fab1d55..0b30801 100644 --- a/components/gameSettings.tsx +++ b/components/gameSettings.tsx @@ -5,7 +5,7 @@ import { Button, Vierkant, CheckBox, Input } from './ui'; import { DialogBox } from './dialogBox'; import { ruleset, userPreferences } from '../api/api'; -import BuildRoundedIcon from '@material-ui/icons/BuildRounded'; +import BuildOutlinedIcon from '@material-ui/icons/BuildOutlined'; type CurrentGameSettingsStateType = { @@ -76,7 +76,7 @@ export class CurrentGameSettings extends Component { right: 0, transform: "translateY(-50%)" }} onclick={this.showEditGameRules}> - <BuildRoundedIcon style={{ fontSize: 48 }}/> + <BuildOutlinedIcon style={{ fontSize: 48 }}/> <span style={{ fontWeight: 600, position: "absolute", |