From fb6acddf022ccd3e459cb2b0b90db3aa50668ab1 Mon Sep 17 00:00:00 2001 From: Ashley Ryan Date: Mon, 18 Apr 2022 16:31:22 -0400 Subject: [PATCH] fix(icon): export launchpad icon Fixes #40 Signed-off-by: Ashley Ryan --- projects/core/custom-elements.json | 16 ++++++++++++++++ projects/core/src/icon/index.ts | 1 + 2 files changed, 17 insertions(+) diff --git a/projects/core/custom-elements.json b/projects/core/custom-elements.json index df94c96a7..8800f6e07 100644 --- a/projects/core/custom-elements.json +++ b/projects/core/custom-elements.json @@ -13163,6 +13163,22 @@ "module": "./shapes/landscape.js" } }, + { + "kind": "js", + "name": "launchpadIcon", + "declaration": { + "name": "launchpadIcon", + "module": "./shapes/launchpad.js" + } + }, + { + "kind": "js", + "name": "launchpadIconName", + "declaration": { + "name": "launchpadIconName", + "module": "./shapes/launchpad.js" + } + }, { "kind": "js", "name": "libraryIcon", diff --git a/projects/core/src/icon/index.ts b/projects/core/src/icon/index.ts index d391100ef..a81a82b00 100644 --- a/projects/core/src/icon/index.ts +++ b/projects/core/src/icon/index.ts @@ -113,6 +113,7 @@ export { hourglassIcon, hourglassIconName } from './shapes/hourglass.js'; export { idBadgeIcon, idBadgeIconName } from './shapes/id-badge.js'; export { keyIcon, keyIconName } from './shapes/key.js'; export { landscapeIcon, landscapeIconName } from './shapes/landscape.js'; +export { launchpadIcon, launchpadIconName } from './shapes/launchpad.js'; export { libraryIcon, libraryIconName } from './shapes/library.js'; export { lightbulbIcon, lightbulbIconName } from './shapes/lightbulb.js'; export { listIcon, listIconName } from './shapes/list.js';