Skip to content

Commit

Permalink
remove obsolete ignored icons
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvice committed Oct 2, 2024
1 parent c56874e commit d158790
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ const getIncludedFamilies = (unsupportedFamilies) => {
)
}

const ignoredIcons = [
'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.
]

;(async () => {
generatePropsFile()

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

for (let i = 0; i < icons.icons.length; i++) {
if (ignoredIcons.includes(icons.icons[i].name)) continue

await generateComponentsForAllFamilies(icons.icons[i])
}
})()
Expand Down

0 comments on commit d158790

Please sign in to comment.