feat: add implementations for adding, removing, and getting icons (#7059)

* feat: add implementations for adding, removing, and getting icons

* chore: fix tests

* chore: switch order of adding icons

* chore: create duplicate icon error

* chore: un-only test
This commit is contained in:
Beka Westberg
2023-05-11 15:48:01 -07:00
committed by GitHub
parent 68eb38889a
commit 8b0c40bb1b
6 changed files with 154 additions and 46 deletions

View File

@@ -124,6 +124,7 @@ import {CodeGenerator} from './generator.js';
import {Gesture} from './gesture.js';
import {Grid} from './grid.js';
import {Icon} from './icon_old.js';
import * as icons from './icons.js';
import {inject} from './inject.js';
import {Align, Input} from './inputs/input.js';
import {inputTypes} from './inputs/input_types.js';
@@ -586,6 +587,7 @@ export {IComponent};
export {IConnectionChecker};
export {IContextMenu};
export {Icon};
export {icons};
export {ICopyable};
export {IDeletable};
export {IDeleteArea};