Skip to content

Commit

Permalink
fix(icons): remove feather icon set
Browse files Browse the repository at this point in the history
this set is causing some issues so it will be removed for the time being, see
#8 for more details

BREAKING CHANGE: the feather icon set (/fi) will is no longer available
  • Loading branch information
Introvertuous committed Mar 7, 2020
1 parent f826131 commit 4dc686c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion example/src/containers/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@
<option value="md">Material Design Icons</option>
<option value="ti">Typicons</option>
<option value="go">Github Octicons</option>
<option value="fi">Feather</option>
<option value="gi">Game Icons</option>
<option value="wi">Weather Icons</option>
</Select>
Expand Down
2 changes: 0 additions & 2 deletions example/src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ export const load = async category => {
result = await import('svelte-icons/di');
} else if (category === 'fa') {
result = await import('svelte-icons/fa');
} else if (category === 'fi') {
result = await import('svelte-icons/fi');
} else if (category === 'gi') {
result = await import('svelte-icons/gi');
} else if (category === 'go') {
Expand Down
2 changes: 2 additions & 0 deletions scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ const icons: Icon[] = [
},
],
},
/*
{
id: 'fi',
name: 'Feather',
Expand All @@ -98,6 +99,7 @@ const icons: Icon[] = [
},
],
},
*/
{
id: 'gi',
name: 'Game Icons',
Expand Down

0 comments on commit 4dc686c

Please sign in to comment.