From f167f168ee2c180283566d07c4597bba805c451e Mon Sep 17 00:00:00 2001 From: David Lechner Date: Fri, 18 Nov 2022 15:14:25 -0600 Subject: [PATCH] fix missing icons Warning sign was missed in 90b04f8. 20px error and info are added just in case. --- CHANGELOG.md | 3 +++ src/blueprintjs-icons.js | 13 ++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bae2219e..f5c93c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## [Unreleased] +### Fixed +- Fixed missing warning sign icon. + ## [2.0.0-beta.11] - 2022-11-11 ### Fixed diff --git a/src/blueprintjs-icons.js b/src/blueprintjs-icons.js index 6f37322f..3efb9b0c 100644 --- a/src/blueprintjs-icons.js +++ b/src/blueprintjs-icons.js @@ -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, +};