и при сборке через Gulp с нее пропадает обводка и текст 
gulp.task('svgSpriteBuild', function () {
return gulp.src('img/svg/*.svg')
// minify svg
.pipe(svgmin({
js2svg: {
pretty: true
}
}))
.pipe(svgSprite({
mode: {
symbol: {
sprite: "sprite.svg",
render: {
scss: {
dest:'scss/_svg_sprite-template.scss',
template: "scss/_svg_sprite.scss"
}
}
}
}
}))
.pipe(gulp.dest('img/svg'));
}); // minify svg
.pipe(svgmin({
js2svg: {
pretty: true
}
})) // Task for svg-sprite
gulp.task('svg-sprite', function () {
return gulp.src(paths.src.svgIcons)
.pipe(svgmin({
js2svg: {
pretty: true
}
}))
// remove all fill, style and stroke declarations in out shapes
.pipe(cheerio({
run: function ($) {
$('[fill]').removeAttr('fill');
$('[stroke]').removeAttr('stroke');
$('[style]').removeAttr('style');
},
parserOptions: {xmlMode: true}
}))
// cheerio plugin create unnecessary string '>', so replace it.
.pipe(replace('>', '>'))
// build svg sprite
.pipe(svgSprite({
mode: {
symbol: {
sprite: "../sprite.svg"
}
}
}))
.pipe(gulp.dest(paths.src.imgFolder));
});