remove extra icon added to button

This commit is contained in:
daposy
2019-10-16 23:18:13 -07:00
parent fc20363ed1
commit 151a0323c8

View File

@@ -106,7 +106,7 @@ export const SettingsTasksPanel: FunctionComponent<IProps> = (props: IProps) =>
labelFor="clean" labelFor="clean"
inline={true} inline={true}
> >
<Button id="clean" text="Clean" icon="warning-sign" intent="danger" onClick={() => setIsCleanAlertOpen(true)} /> <Button id="clean" text="Clean" intent="danger" onClick={() => setIsCleanAlertOpen(true)} />
</FormGroup> </FormGroup>
<Divider /> <Divider />
@@ -124,7 +124,7 @@ export const SettingsTasksPanel: FunctionComponent<IProps> = (props: IProps) =>
labelFor="import" labelFor="import"
inline={true} inline={true}
> >
<Button id="import" text="Import" icon="warning-sign" intent="danger" onClick={() => setIsImportAlertOpen(true)} /> <Button id="import" text="Import" intent="danger" onClick={() => setIsImportAlertOpen(true)} />
</FormGroup> </FormGroup>
</> </>
); );