An open API service indexing awesome lists of open source software.

https://github.com/web1n/svgiconfont


https://github.com/web1n/svgiconfont

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# @web1n/svgiconfont

svg icon to font

## Sample

```ts
await SvgIconFont({
fontName: 'icon',
dest: 'output',
files: [
'solid/angle-down',
'solid/arrow-right',
'solid/plus',
'solid/up-right-from-square'
].map(name => {
return resolve('node_modules', '@fortawesome', 'fontawesome-free', 'svgs', `${name}.svg`);
})
});
```