├── .github └── FUNDING.yml ├── .gitignore ├── HELP.md ├── README.md ├── iconfont.sketchplugin └── Contents │ ├── Resources │ ├── config.json │ └── fonts.json │ └── Sketch │ ├── add.js │ ├── add_all.js │ ├── add_grid.js │ ├── const │ ├── config.js │ ├── export.js │ ├── import.js │ ├── install.js │ ├── library.js │ └── remove.js │ ├── convert.js │ ├── learn.js │ ├── manifest.json │ ├── structure.json │ └── whatsfontbundle.js └── version.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | iconfont.sketchplugin/Contents/Resources/bundle/* 3 | -------------------------------------------------------------------------------- /HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/HELP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/README.md -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Resources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Resources/config.json -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Resources/fonts.json: -------------------------------------------------------------------------------- 1 | { 2 | "fonts" : { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/add.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/add_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/add_all.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/add_grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/add_grid.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/config.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/export.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/import.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/install.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/library.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/const/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/const/remove.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/convert.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/learn.js -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/structure.json -------------------------------------------------------------------------------- /iconfont.sketchplugin/Contents/Sketch/whatsfontbundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/iconfont.sketchplugin/Contents/Sketch/whatsfontbundle.js -------------------------------------------------------------------------------- /version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keremciu/sketch-iconfont/HEAD/version.xml --------------------------------------------------------------------------------