used mdi icons instead of font awesome

This commit is contained in:
Jan Prochazka
2020-11-09 19:33:46 +01:00
parent 4bf797c27d
commit a7fcf1d3a3
25 changed files with 85 additions and 51 deletions

View File

@@ -25,7 +25,7 @@ export default function ErrorMessageModal({ modalState, title = 'Error', message
<ModalContent>
<Wrapper>
<IconWrapper>
<FontIcon icon="fas fa-times-circle red" />
<span className="mdi mdi-close-circle color-red" />
</IconWrapper>
{message}
</Wrapper>

View File

@@ -23,7 +23,7 @@ export default function ModalHeader({ children, modalState }) {
<Wrapper>
<div>{children}</div>
<CloseWrapper onClick={modalState.close}>
<i className="fas fa-times" />
<span className="mdi mdi-close" />
</CloseWrapper>
</Wrapper>
);