1234567891011121314151617181920 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32">
- <defs>
- <g id="cross" stroke="white">
- <line x1="-6" y1="-6" x2="6" y2="6" />
- <line x1="6" y1="-6" x2="-6" y2="6" />
- </g>
- </defs>
- <rect fill="red" width="32" height="32" /> <!-- Red background. -->
- <g stroke-width="3" stroke-linejoin="round" stroke-linecap="round">
- <g stroke="black" fill="white">
- <polygon points="16,6.5 29.856,30.5 2.144,30.5" /> <!-- Triangle. -->
- <line x1="16" y1="14.5" x2="16" y2="22.5" /> <!-- Line of the ! -->
- </g>
- <use xlink:href="#cross" x="0" y="7.5" /> <!-- Two crosses, forming one cross split over the viewport. -->
- <use xlink:href="#cross" x="32" y="7.5" />
- </g>
- <circle r="1.5" cx="16" cy="26.5" /> <!-- Dot under the ! -->
- </svg>
|