1234567891011121314 |
- <?xml version="1.0" encoding="UTF-8"?>
- <svg viewBox="0 0 24 24" width="20px" height="20px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
- <defs>
- <pattern id="Background-Chessboard" width="0.5" height="0.5" patternContentUnits="objectBoundingBox">
- <rect x="0" y="0" width="0.25" height="0.25" style="fill: rgba(0, 0, 0, 0.2);"></rect>
- <rect x="0.25" y="0.25" width="0.25" height="0.25" style="fill: rgba(0, 0, 0, 0.2);"></rect>
- </pattern>
- </defs>
- <circle cx="12" cy="12" r="10" style="fill: url('#Background-Chessboard');"></circle>
- <g transform="translate(5 5)">
- <line x1="2" x2="12" y1="12" y2="2" stroke-linecap="round" style="stroke: rgb(255, 0, 0); stroke-width: 2;"></line>
- </g>
- <circle cx="12" cy="12" r="10" style="stroke: rgb(64, 64, 64); fill: none; stroke-width: 1; fill-opacity: 1;"></circle>
- </svg>
|