├── .gitignore ├── README.md ├── SketchToolbarIcon.framework ├── Resources │ ├── Assets.car │ └── Info.plist ├── SketchToolbarIcon └── _CodeSignature │ └── CodeResources ├── gh-image.png ├── package.json └── sketch-toolbar-icon.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/README.md -------------------------------------------------------------------------------- /SketchToolbarIcon.framework/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/SketchToolbarIcon.framework/Resources/Assets.car -------------------------------------------------------------------------------- /SketchToolbarIcon.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/SketchToolbarIcon.framework/Resources/Info.plist -------------------------------------------------------------------------------- /SketchToolbarIcon.framework/SketchToolbarIcon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/SketchToolbarIcon.framework/SketchToolbarIcon -------------------------------------------------------------------------------- /SketchToolbarIcon.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/SketchToolbarIcon.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /gh-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/gh-image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/package.json -------------------------------------------------------------------------------- /sketch-toolbar-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-toolbar-item/HEAD/sketch-toolbar-icon.js --------------------------------------------------------------------------------