https://github.com/web1n/svgiconfont
https://github.com/web1n/svgiconfont
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/web1n/svgiconfont
- Owner: web1n
- License: isc
- Created: 2023-02-13T04:28:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-13T10:57:55.000Z (over 3 years ago)
- Last Synced: 2025-02-11T14:42:35.885Z (over 1 year ago)
- Language: TypeScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`);
})
});
```