Skip to content

Commit

Permalink
fix(icons): add missing icon exports (#240)
Browse files Browse the repository at this point in the history
closes #209
  • Loading branch information
rbirkgit authored May 30, 2023
1 parent e52d73c commit c1f4f38
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
64 changes: 64 additions & 0 deletions projects/core/custom-elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -12603,6 +12603,22 @@
"module": "./shapes/beta.js"
}
},
{
"kind": "js",
"name": "birthdayCakeIcon",
"declaration": {
"name": "birthdayCakeIcon",
"module": "./shapes/birthday-cake.js"
}
},
{
"kind": "js",
"name": "birthdayCakeIconName",
"declaration": {
"name": "birthdayCakeIconName",
"module": "./shapes/birthday-cake.js"
}
},
{
"kind": "js",
"name": "boltIcon",
Expand Down Expand Up @@ -13307,6 +13323,22 @@
"module": "./shapes/fuel.js"
}
},
{
"kind": "js",
"name": "gavelIcon",
"declaration": {
"name": "gavelIcon",
"module": "./shapes/gavel.js"
}
},
{
"kind": "js",
"name": "gavelIconName",
"declaration": {
"name": "gavelIconName",
"module": "./shapes/gavel.js"
}
},
{
"kind": "js",
"name": "gridViewIcon",
Expand Down Expand Up @@ -14123,6 +14155,22 @@
"module": "./shapes/thermometer.js"
}
},
{
"kind": "js",
"name": "timelineIcon",
"declaration": {
"name": "timelineIcon",
"module": "./shapes/timeline.js"
}
},
{
"kind": "js",
"name": "timelineIconName",
"declaration": {
"name": "timelineIconName",
"module": "./shapes/timeline.js"
}
},
{
"kind": "js",
"name": "timesCircleIcon",
Expand Down Expand Up @@ -16747,6 +16795,22 @@
"module": "./shapes/nvme.js"
}
},
{
"kind": "js",
"name": "pdfFileIcon",
"declaration": {
"name": "pdfFileIcon",
"module": "./shapes/pdf-file.js"
}
},
{
"kind": "js",
"name": "pdfFileIconName",
"declaration": {
"name": "pdfFileIconName",
"module": "./shapes/pdf-file.js"
}
},
{
"kind": "js",
"name": "phoneHandsetIcon",
Expand Down
4 changes: 4 additions & 0 deletions projects/core/src/icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export { alarmOffIcon, alarmOffIconName } from './shapes/alarm-off.js';
export { asteriskIcon, asteriskIconName } from './shapes/asterisk.js';
export { banIcon, banIconName } from './shapes/ban.js';
export { betaIcon, betaIconName } from './shapes/beta.js';
export { birthdayCakeIcon, birthdayCakeIconName } from './shapes/birthday-cake.js';
export { boltIcon, boltIconName } from './shapes/bolt.js';
export { bookIcon, bookIconName } from './shapes/book.js';
export { briefcaseIcon, briefcaseIconName } from './shapes/briefcase.js';
Expand Down Expand Up @@ -106,6 +107,7 @@ export { fishIcon, fishIconName } from './shapes/fish.js';
export { flameIcon, flameIconName } from './shapes/flame.js';
export { formIcon, formIconName } from './shapes/form.js';
export { fuelIcon, fuelIconName } from './shapes/fuel.js';
export { gavelIcon, gavelIconName } from './shapes/gavel.js';
export { gridViewIcon, gridViewIconName } from './shapes/grid-view.js';
export { helpIcon, helpIconName } from './shapes/help.js';
export { historyIcon, historyIconName } from './shapes/history.js';
Expand Down Expand Up @@ -157,6 +159,7 @@ export { tagIcon, tagIconName } from './shapes/tag.js';
export { tagsIcon, tagsIconName } from './shapes/tags.js';
export { targetIcon, targetIconName } from './shapes/target.js';
export { thermometerIcon, thermometerIconName } from './shapes/thermometer.js';
export { timelineIcon, timelineIconName } from './shapes/timeline.js';
export { timesCircleIcon, timesCircleIconName } from './shapes/times-circle.js';
export { toolsIcon, toolsIconName } from './shapes/tools.js';
export { trashIcon, trashIconName } from './shapes/trash.js';
Expand Down Expand Up @@ -331,6 +334,7 @@ export { nodeIcon, nodeIconName } from './shapes/node.js';
export { nodesIcon, nodesIconName } from './shapes/nodes.js';
export { noWifiIcon, noWifiIconName } from './shapes/no-wifi.js';
export { nvmeIcon, nvmeIconName } from './shapes/nvme.js';
export { pdfFileIcon, pdfFileIconName } from './shapes/pdf-file.js';
export { phoneHandsetIcon, phoneHandsetIconName } from './shapes/phone-handset.js';
export { pluginIcon, pluginIconName } from './shapes/plugin.js';
export { podIcon, podIconName } from './shapes/pod.js';
Expand Down

0 comments on commit c1f4f38

Please sign in to comment.