Skip to content

Commit d158790

Browse files
committed
remove obsolete ignored icons
1 parent c56874e commit d158790

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

generator.js

-6
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ const getIncludedFamilies = (unsupportedFamilies) => {
1919
)
2020
}
2121

22-
const ignoredIcons = [
23-
'addchart', // This icon exists twice 'addchart' and 'add_chart'. That's why we decide to only use one version, so that we don't get naming collisions.
24-
]
25-
2622
;(async () => {
2723
generatePropsFile()
2824

@@ -33,8 +29,6 @@ const ignoredIcons = [
3329
const icons = await JSON.parse(data)
3430

3531
for (let i = 0; i < icons.icons.length; i++) {
36-
if (ignoredIcons.includes(icons.icons[i].name)) continue
37-
3832
await generateComponentsForAllFamilies(icons.icons[i])
3933
}
4034
})()

0 commit comments

Comments
 (0)