-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinearGradients.js
50 lines (50 loc) · 1.56 KB
/
linearGradients.js
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
export default function() {
return (
<div>
<svg
style={{ width: 0, height: 0, position: 'absolute' }}
aria-hidden="true"
focusable="false"
>
<linearGradient id="favoriteID" x2="1" y2="1">
<stop offset="0%" stopColor="#FF8A8A" />
<stop offset="50%" stopColor="#FF545F" />
<stop offset="100%" stopColor="#ff101f" />
</linearGradient>
</svg>
<svg
style={{ width: 0, height: 0, position: 'absolute' }}
aria-hidden="true"
focusable="false"
>
<linearGradient id="chatID" x2="1" y2="1">
<stop offset="0%" stopColor="#81d6e3" />
<stop offset="50%" stopColor="#15C0DA" />
<stop offset="100%" stopColor="#81d6e3" />
</linearGradient>
</svg>
<svg
style={{ width: 0, height: 0, position: 'absolute' }}
aria-hidden="true"
focusable="false"
>
<linearGradient id="eventID" x2="1" y2="1">
<stop offset="0%" stopColor="#CABAC8" />
<stop offset="50%" stopColor="#B661AB" />
<stop offset="100%" stopColor="#AD74A6" />
</linearGradient>
</svg>
<svg
style={{ width: 0, height: 0, position: 'absolute' }}
aria-hidden="true"
focusable="false"
>
<linearGradient id="receiptID" x2="1" y2="1">
<stop offset="0%" stopColor="#8AC9C5" />
<stop offset="50%" stopColor="#4CB5AE" />
<stop offset="100%" stopColor="#37C5BC" />
</linearGradient>
</svg>
</div>
)
}