File Icon Font
File icons in the file tree using vscode-material-icon-theme.
Visit https://uiwjs.github.io/file-icons/ and check out the search feature, which has keywords identifying common icon names and styles. For example, if you search for "swift" we call up every icon that could possibly be used as an arrow. We've also included each icon's class name for easy copy/pasting when you're developing!
They are free to use and licensed under MIT. Use them wherever you see fit, personal or commercial.
Install
npm install @uiw/file-icons --save
Usage
You can use https://uiwjs.github.io/file-icons/ to easily find the icon you want to use. Once you've copied the desired icon's CSS classname, simply add the icon and icon's classname, such as apple
to an HTML element.
Suppose the font name is defined as ffont
, The default home page is unicode
, Will generate:
font-class.html
index.html
symbol.html
react
ffont.json
ffont.css
ffont.eot
ffont.less
ffont.svg
ffont.symbol.svg
ffont.ttf
ffont.woff
ffont.woff2
Preview demo font-class.html
, symbol.html
annd index.html
. Automatically generated style ffont.css
and ffont.less
.
symbol svg
<svg class="icon" aria-hidden="true">
<use xlink:href="node_modules/@uiw/file-icons/fonts/ffont.symbol.svg#ffont-javascript"></use>
</svg>
Unicode
<style>
.iconfont {
font-family: "ffont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
</style>
<span class="iconfont"></span>
Class Name
Support for .less
and .css
styles references.
<link rel="stylesheet" type="text/css" href="node_modules/@uiw/file-icons/fonts/ffont.css">
<i class="ffont-javascript"></i>
License
Created By svgtofont, Licensed under the MIT License.