Turn symptom icons into icon font

This commit is contained in:
Julia Friesel
2018-11-27 16:07:38 +01:00
parent 16220305d7
commit 4f4d930c8e
22 changed files with 216 additions and 497 deletions
+8 -8
View File
@@ -1,14 +1,14 @@
import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
import { Surface, Group as G, Shape, Transform } from 'react-native/Libraries/ART/ReactNativeART'
export default function HomeDropIcon() {
export default function HomeDropIcon(props) {
return (
<Svg width={80} height={102.56} viewBox="350 275 145 144">
<G>
<Path fill="none" stroke="#89113E" stroke-width="2" stroke-miterlimit="10" d="M492.723,455.44
c-5.531,39.136-41.74,66.377-80.876,60.847C372.712,510.757,351,483.64,351,444.115c0-37.555,79.739-114.673,80.391-105.969
C434.248,376.247,499.843,405.058,492.723,455.44z"/>
<Surface width={83} height={103.56}>
<G transform={new Transform().scale(props.scale).translate(-345, -330)}>
<Shape stroke="#89113E" strokeWidth="2" d="M492.723,455.44
c-5.531,39.136-41.74,66.377-80.876,60.847C372.712,510.757,351,483.64,351,444.115c0-37.555,79.739-114.673,80.391-105.969
C434.248,376.247,499.843,405.058,492.723,455.44z"/>
</G>
</Svg>
</Surface>
)
}