Dashboard icon

Change-Id: Ibebd10436e18d4b424ba311f9e0c1f4ec385361f
diff --git a/views/ngXosLib/generator-xos/app/index.js b/views/ngXosLib/generator-xos/app/index.js
index 0368fd2..72c6f56 100755
--- a/views/ngXosLib/generator-xos/app/index.js
+++ b/views/ngXosLib/generator-xos/app/index.js
@@ -64,7 +64,7 @@
         {fileName: this._fistCharToUpper(config.name)}
       );
     },
-    css: function(){
+    scss: function(){
       this.fs.copyTpl(
         this.templatePath('src/sass/main.scss'),
         this.destinationPath(`${this.config.get('folder')}/${config.name}/src/sass/main.scss`),
@@ -78,6 +78,11 @@
         { name: config.name, fileName: this._fistCharToUpper(config.name) }
       );
     },
+    image: function(){
+      this.fs.copyTpl(
+        this.templatePath('src/icons/README.md'),
+        this.destinationPath(`${this.config.get('folder')}/${config.name}/src/icons/README.md`));
+    },
     template: function(){
       this.fs.copy(this.templatePath('src/templates/users-list.tpl.html'), this.destinationPath(`${this.config.get('folder')}/${config.name}/src/templates/users-list.tpl.html`));
     },