chore: tidy up

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-07-24 12:06:53 +02:00
parent 97157c5470
commit e59ff0b2bc
13 changed files with 130 additions and 324 deletions
@@ -33,39 +33,3 @@ export const IconBundleBlueprint = createExtensionBlueprint({
icons: iconsDataRef,
},
});
IconBundleBlueprint.make({
name: 'asd',
params: {
icons: {
'icon-name': () => null,
},
},
});
IconBundleBlueprint.make({
name: 'asd',
params: {
icons: {
'icon-name': () => null,
},
},
});
IconBundleBlueprint.make({
name: 'asd',
factory() {
return {
icons: {
'icon-name': () => null,
},
};
},
});
IconBundleBlueprint.make({
name: 'asd',
factory(f) {
return f({ icons: { 'icon-name': () => null } });
},
});