fix missing icons

Warning sign was missed in 90b04f8. 20px error and info are added just
in case.
This commit is contained in:
David Lechner
2022-11-18 19:28:00 -06:00
committed by David Lechner
parent 745d09df7a
commit f167f168ee
2 changed files with 15 additions and 1 deletions
+12 -1
View File
@@ -37,10 +37,14 @@ import {
Trash,
Undo,
Virus,
WarningSign,
} from '@blueprintjs/icons/lib/esm/generated/16px/paths';
import {
Cog as Cog20,
Document as Document20,
Error as Error20,
InfoSign as InfoSign20,
WarningSign as WarningSign20,
} from '@blueprintjs/icons/lib/esm/generated/20px/paths';
import { pascalCase } from 'change-case';
@@ -81,6 +85,13 @@ export const IconSvgPaths16 = {
Trash,
Undo,
Virus,
WarningSign,
};
export const IconSvgPaths20 = { Cog: Cog20, Document: Document20 };
export const IconSvgPaths20 = {
Cog: Cog20,
Document: Document20,
Error: Error20,
InfoSign: InfoSign20,
WarningSign: WarningSign20,
};