Skip to content
Snippets Groups Projects
Commit 6b1305bf authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

add icon dimesions, add cli script that fixes that (will soon be reworked) and...

add icon dimesions, add cli script that fixes that (will soon be reworked) and adjust svgo configuration, fixes #163
parent bbaa4429
No related branches found
No related tags found
No related merge requests found
Showing
with 40 additions and 19 deletions
#!/usr/bin/env php
<?php
require_once __DIR__ . '/studip_cli_env.inc.php';
$folder = $GLOBALS['STUDIP_BASE_PATH'] . '/public/assets/images/icons';
$iterator = new RecursiveDirectoryIterator($folder, FilesystemIterator::FOLLOW_SYMLINKS | FilesystemIterator::UNIX_PATHS);
$iterator = new RecursiveIteratorIterator($iterator);
$regexp_iterator = new RegexIterator($iterator, '/\.svg$/', RecursiveRegexIterator::MATCH);
foreach ($regexp_iterator as $file) {
$contents = file_get_contents($file);
$xml = simplexml_load_string($contents);
$attr = $xml->attributes();
if ($attr->width && $attr->height) {
continue;
}
$contents = str_replace('<svg ', '<svg width="16" height="16" ', $contents);
file_put_contents($file, $contents);
echo "Adjusted $file\n";
}
...@@ -11,7 +11,6 @@ module.exports = { ...@@ -11,7 +11,6 @@ module.exports = {
"onlyMatchedOnce": false "onlyMatchedOnce": false
} }
}, },
'removeDimensions',
'convertStyleToAttrs', 'convertStyleToAttrs',
'removeDoctype', 'removeDoctype',
'removeXMLProcInst', 'removeXMLProcInst',
......
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.09 8.09c0-1.57.82-2.28 1.7-2.28A1.69 1.69 0 016 6.32l-.5.58a.93.93 0 00-.65-.3C4.37 6.6 4 7 4 8.09s.33 1.35.68 1.35.53-.2.53-.68-.21-.61-.57-.61a.76.76 0 00-.64.46L3.94 8a1.18 1.18 0 01.89-.5 1.16 1.16 0 011.25 1.26 1.35 1.35 0 01-1.4 1.41c-.81 0-1.59-.61-1.59-2.08zM6.56 8c0-1.43.6-2.16 1.5-2.16S9.57 6.55 9.57 8s-.6 2.2-1.51 2.2-1.5-.8-1.5-2.2zm2.09 0c0-1.14-.26-1.4-.59-1.4s-.58.26-.58 1.4.26 1.45.58 1.45.59-.33.59-1.45zm1.44 1.18c0-.69.55-1.06 1.85-1.2a.46.46 0 00-.52-.47 1.79 1.79 0 00-.87.29l-.35-.64a2.74 2.74 0 011.4-.43c.84 0 1.31.48 1.31 1.49v1.87h-.8L12 9.76a1.46 1.46 0 01-.95.41.94.94 0 01-.96-.99zm1.85 0v-.61c-.7.09-.92.29-.92.54s.14.31.37.31a.76.76 0 00.55-.28zM8 1a7 7 0 107 7 7 7 0 00-7-7zm0 12.61A5.61 5.61 0 1113.61 8 5.62 5.62 0 018 13.61z"/></svg>
\ No newline at end of file \ No newline at end of file
<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg> <svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="accept"><polygon id="decline" class="cls-1" points="50.98 16.77 42.57 8.35 22.12 28.8 11.41 18.1 3.01 26.51 22.13 45.63 50.98 16.77"/></g></svg>
\ No newline at end of file \ No newline at end of file
<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg> <svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="activity" d="M3,3V51H51V3ZM48,26.62H43l-3.85-7.87-4,7.87H31.93l-.65,1.77-4.2-12.78-5.6,22.25L15.8,6H48ZM15.66,6,9.39,26.62H6V6ZM6,29.62h5.6L15,18.52,20.25,48H6ZM22.08,48l5.39-21.6,3.66,11.16L34,29.62h3l2.07-4.13,2,4.13H48V48Z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="messagebox"><g id="add-circle"><path class="cls-1" d="M30.5,40.54v-10H40.71v-7H30.5V13.34h-7V23.5H13.29v7H23.51v10ZM27,8A19,19,0,1,1,8,27,19,19,0,0,1,27,8m0-5A24,24,0,1,0,51,27,24,24,0,0,0,27,3Z"/></g></g></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#00000;}</style></defs><polygon class="a" points="48 21.97 32 21.97 32 5.97 22 5.97 22 21.97 6 21.97 6 31.97 22 31.97 22 47.97 32 47.97 32 31.97 48 31.97 48 21.97"/></svg>
\ No newline at end of file \ No newline at end of file
<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg> <svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.cls-1{fill:#000000;}</style></defs><g id="admin"><path class="cls-1" d="M50.58,22.76l-.95-.4a3.12,3.12,0,0,1,0-5.8l.95-.41h0a.69.69,0,0,0,.37-.89h0l-.7-1.69-1.13-2.75A.71.71,0,0,0,49,10.6a.67.67,0,0,0-.74-.15h0l-.95.39a3.05,3.05,0,0,1-3.43-.65,3.15,3.15,0,0,1-.65-3.45l.4-1a.69.69,0,0,0-.36-.89L38.82,3.05a.67.67,0,0,0-.88.37l-.41,1a3.08,3.08,0,0,1-5.75,0l-.41-1a.68.68,0,0,0-.89-.37L26.07,4.9a.68.68,0,0,0-.37.89l.39,1A3.1,3.1,0,0,1,22,10.85h0l-.95-.4a.68.68,0,0,0-.89.37l-1.83,4.44a.69.69,0,0,0,.37.89l1,.41a3.12,3.12,0,0,1,0,5.79l-.95.42a.69.69,0,0,0-.38.89l1.83,4.44a.7.7,0,0,0,.89.37l1-.4a3.05,3.05,0,0,1,3.42.65,3.12,3.12,0,0,1,.64,3.45h0l-.4,1a.68.68,0,0,0,.37.89l4.41,1.84a.68.68,0,0,0,.89-.36l.4-1a3.08,3.08,0,0,1,5.76,0l.4,1a.68.68,0,0,0,.89.36L43.23,34a.68.68,0,0,0,.37-.89l-.4-1h0a3.15,3.15,0,0,1,.65-3.45,3.06,3.06,0,0,1,3.42-.65h0l.95.4a.69.69,0,0,0,.89-.37L51,23.65A.69.69,0,0,0,50.58,22.76ZM36.89,24.9a5.84,5.84,0,0,1-7.65-3.19A5.91,5.91,0,0,1,32.41,14a5.84,5.84,0,0,1,7.65,3.18A5.91,5.91,0,0,1,36.89,24.9Z"/><path class="cls-1" d="M25.82,37.11H25.1a2.14,2.14,0,0,1-2-1.33,2.21,2.21,0,0,1,.5-2.41l.51-.51a.5.5,0,0,0,0-.68l-2.36-2.38a.46.46,0,0,0-.67,0l-.52.52a2.16,2.16,0,0,1-2.39.5,2.19,2.19,0,0,1-1.33-2.06V28a.47.47,0,0,0-.47-.48H13a.48.48,0,0,0-.48.47v.73a2.16,2.16,0,0,1-3.72,1.56h0l-.51-.52a.46.46,0,0,0-.67,0L5.24,32.17a.48.48,0,0,0,0,.68l.5.51a2.19,2.19,0,0,1,.5,2.41,2.14,2.14,0,0,1-2,1.33H3.48a.48.48,0,0,0-.48.48V41a.48.48,0,0,0,.48.48H4.2a2.15,2.15,0,0,1,2,1.34,2.17,2.17,0,0,1-.5,2.4h0l-.51.52a.48.48,0,0,0,0,.67l2.36,2.38a.46.46,0,0,0,.67,0l.52-.51a2.16,2.16,0,0,1,2.39-.5A2.18,2.18,0,0,1,12.5,49.8v.72h0A.49.49,0,0,0,13,51h3.34a.47.47,0,0,0,.48-.48h0V49.8a2.18,2.18,0,0,1,1.33-2.06,2.16,2.16,0,0,1,2.39.5l.51.52a.46.46,0,0,0,.67,0l2.37-2.38a.48.48,0,0,0,0-.67l-.51-.53a2.19,2.19,0,0,1-.5-2.4,2.15,2.15,0,0,1,2-1.34h.72A.48.48,0,0,0,26.3,41V37.59A.47.47,0,0,0,25.82,37.11ZM14.65,43.39a4.12,4.12,0,1,1,4.09-4.12A4.1,4.1,0,0,1,14.65,43.39Z"/></g></svg>
\ No newline at end of file \ No newline at end of file
<svg id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg> <svg width="16" height="16" id="plugins" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><g id="Aladin"><path d="M42.47,16.1c-1.55.43-4.35,1.35-6.93,2.23A21.09,21.09,0,0,0,30,16.92s0-.05,0-.07a3.33,3.33,0,1,0-6.65,0s0,0,0,.07a22.49,22.49,0,0,0-2.87.53,14.7,14.7,0,0,0-4.91-3.38c-5.27-2.28-10.74-1.39-12.2,2S5,24,10.26,26.31a35.56,35.56,0,0,0,8,2.84,23.17,23.17,0,0,0,6.35,1.3,9.28,9.28,0,0,1-2.07,4s0,0-.05.06c-3.71.52-6.31,1.72-6.31,3.11,0,1.87,4.66,3.39,10.42,3.39s10.41-1.52,10.41-3.39c0-1.39-2.6-2.59-6.31-3.11,0,0,0,0,0-.06a9.19,9.19,0,0,1-2.08-4,28.35,28.35,0,0,0,3.19-.4h.12l.8-.2c.53-.13,1-.26,1.51-.41.23-.07.45-.16.67-.24a12.62,12.62,0,0,0,1.23-.51,8.1,8.1,0,0,0,.78-.39c.32-.17.64-.36.94-.56s.33-.21.48-.32A33.85,33.85,0,0,0,43.8,22a22,22,0,0,1,7.14-5.32S47.67,14.65,42.47,16.1ZM6.09,17.24c1-2.25,4.83-2.74,8.62-1.1,2.26,1,1.68,1.32,2,2.62-2.5,1.25-4,3-4,4.87a3.63,3.63,0,0,0,.23,1.17,9.21,9.21,0,0,1-1.71-.53C7.4,22.64,5.11,19.48,6.09,17.24Z"/></g></svg>
<svg id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg> <svg width="16" height="16" id="icons" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54" fill="#000000"><path id="archive" d="M5.88,27V43.44H48.11V27Zm32,8.22H16.64V30.84H37.85Z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 16.5 37.37 16.5 27 26.87 16.63 16.5 6 16.5 27 37.5 48 16.5"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="37.5 48 37.5 37.37 27.13 27 37.5 16.63 37.5 6 16.5 27 37.5 48"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="16.5 6 16.5 16.63 26.87 27 16.5 37.37 16.5 48 37.5 27 16.5 6"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 23.97 16.63 23.97 27 13.6 37.37 23.97 48 23.97 27 2.97 6 23.97"/><polygon class="a" points="48 29.97 37.37 29.97 27 40.34 16.63 29.97 6 29.97 27 50.97 48 29.97"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 37.5 16.63 37.5 27 27.13 37.37 37.5 48 37.5 27 16.5 6 37.5"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="48 8 37.37 8 27 18.37 16.63 8 6 8 27 29 48 8"/><polygon class="a" points="48 25 37.37 25 27 35.37 16.63 25 6 25 27 46 48 25"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="46 6 46 16.63 35.63 27 46 37.37 46 48 25 27 46 6"/><polygon class="a" points="29 6 29 16.63 18.63 27 29 37.37 29 48 8 27 29 6"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="8 6 8 16.63 18.37 27 8 37.37 8 48 29 27 8 6"/><polygon class="a" points="25 6 25 16.63 35.37 27 25 37.37 25 48 46 27 25 6"/></svg>
\ No newline at end of file \ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><defs><style>.a{fill:#000000;}</style></defs><polygon class="a" points="6 46 16.63 46 27 35.63 37.37 46 48 46 27 25 6 46"/><polygon class="a" points="6 29 16.63 29 27 18.63 37.37 29 48 29 27 8 6 29"/></svg>
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment