uses cycle day symbol in chart and corresponding color

This commit is contained in:
tina
2018-10-31 17:12:24 +01:00
parent eefe3ae113
commit d81e4a8e45
4 changed files with 30 additions and 19 deletions
+6 -8
View File
@@ -1,16 +1,14 @@
import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
import { G, Path } from 'react-native-svg'
export default function HomeCycleIcon() {
export default function CycleDayIcon() {
return (
<Svg width={80} height={80} viewBox='340 345 170 170'>
<G>
<Path fill="none" stroke="#1E0B7A" strokeWidth="2" d="M379.708,350.568
<G>
<Path d="M379.708,350.568
C356.431,365.455,341,391.529,341,421.21c0,46.275,37.515,83.79,83.791,83.79s83.79-37.515,83.79-83.79
c0-31.784-17.696-59.436-43.773-73.637"/>
<Path fill="none" stroke="#1E0B7A" strokeWidth="2" d="M383.809,369.885v-18.398
<Path d="M383.809,369.885v-18.398
c0,0,0-4.843-4.842-4.843h-18.399"/>
</G>
</Svg>
</G>
)
}