diff options
author | codecalm <codecalm@gmail.com> | 2020-03-10 00:31:35 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-10 00:31:35 +0100 |
commit | a71e178274ca8a2866c8b70b1b1e39ecd705e8f5 (patch) | |
tree | d80f22944da66d29bcaa542722043c27d41b19b9 /gulpfile.js | |
parent | icons sprite (diff) | |
download | tabler-icons-a71e178274ca8a2866c8b70b1b1e39ecd705e8f5.tar.xz |
icons sprite
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 03f9d56..2114936 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,7 +22,7 @@ gulp.task('icons-sprite', function (cb) { .replace(/>\s+</g, '><') .trim(); - svgContent += `<symbol id="${name}" viewBox="0 0 24 24">${svgFileContent}</symbol>` + svgContent += `<symbol id="${name}" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">${svgFileContent}</symbol>` }); let svg = `<svg xmlns="http://www.w3.org/2000/svg"><defs>${svgContent}</defs></svg>`; |