Install
pnpm add feather-iconsWire icons
Use the feather / featherIcons adapter from ngwr/icon/adapters/feather. Feather ships its icons as a single JSON file — pluck the SVG strings you need.
import featherSource from 'feather-icons/dist/icons.json';
import { provideWrIcons } from 'ngwr/icon';
import { featherIcons } from 'ngwr/icon/adapters/feather';
bootstrapApplication(AppComponent, {
providers: [
provideWrIcons(featherIcons({
add: featherSource['plus'],
trash: featherSource['trash-2'],
})),
],
});
// Then in any template: <wr-icon name="add" />