blob: 97826bc206cd7ca6fa1baa02ef8e3b9fddb0789a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 21 21">
<style>
use:not(:target) {
display: none;
}
use {
fill: #2292d0;
}
use[id$="-native"] {
fill: -moz-dialogText;
}
</style>
<defs>
<circle id="radio-shape" cx="10.5" cy="10.5" r="6"/>
</defs>
<use id="radio" xlink:href="#radio-shape"/>
<use id="radio-native" xlink:href="#radio-shape"/>
</svg>
|