icon names refactor

This commit is contained in:
Jan Prochazka
2020-11-10 18:21:29 +01:00
parent 1c2dedfef3
commit c8f7dc3d2c
37 changed files with 146 additions and 89 deletions

View File

@@ -24,7 +24,7 @@ export default function ErrorMessageModal({ modalState, title = 'Error', message
<ModalContent>
<Wrapper>
<IconWrapper>
<FontIcon icon="mdi mdi-close-circle color-red" />
<FontIcon icon="img red-error" />
</IconWrapper>
{message}
</Wrapper>

View File

@@ -90,7 +90,7 @@ function GenerateSctriptButton({ modalState }) {
const code = await createImpExpScript(values);
openNewTab(setOpenedTabs, {
title: 'Shell',
icon: 'mdi mdi-flash color-blue-icon',
icon: 'img shell',
tabComponent: 'ShellTab',
props: {
initialScript: code,

View File

@@ -24,7 +24,7 @@ export default function ModalHeader({ children, modalState }) {
<Wrapper>
<div>{children}</div>
<CloseWrapper onClick={modalState.close}>
<FontIcon icon="mdi mdi-close" />
<FontIcon icon="icon close" />
</CloseWrapper>
</Wrapper>
);