select.rs
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use mogwai::prelude::*;
use super::NS;
#[allow(dead_code)]
pub(crate) fn select_icon() -> ViewBuilder<Dom> {
builder! {
<svg xmlns=NS viewBox="0 -1 24 24"
style:width="1.5em" style:height="1.5em"
style:fill="none">
<path xmlns=NS
style:fill="black"
d="M9.17154 11.508
L7.75732 10.0938
L12 5.85113
L16.2426 10.0938
L14.8284 11.508
L12 8.67956
L9.17154 11.508Z"/>
<path xmlns=NS
style:fill="black"
d="M9.17154 12.492
L7.75732 13.9062
L12 18.1489
L16.2426 13.9062
L14.8284 12.492
L12 15.3204
L9.17154 12.492Z"/>
<path xmlns=NS
style:fill="black"
style:fill_rule="evenodd"
style:clip_rule="evenodd"
d="M1 5
C1 2.79086 2.79086 1 5 1
H19
C21.2091 1 23 2.79086 23 5
V19
C23 21.2091 21.2091 23 19 23
H5
C2.79086 23 1 21.2091 1 19
V5Z
M5 3
H19
C20.1046 3 21 3.89543 21 5
V19
C21 20.1046 20.1046 21 19 21
H5
C3.89543 21 3 20.1046 3 19
V5
C3 3.89543 3.89543 3 5 3Z"/>
</svg>
}
}