From a56e6e999c098b7cd86ce3facb57d604dbc55bb1 Mon Sep 17 00:00:00 2001 From: emelko Date: Wed, 26 Sep 2018 14:29:06 +0200 Subject: [PATCH] Adding all the symptom icons, made with <3 by Paula --- assets/bleeding.js | 30 +++++++++++++++++++++++++ assets/cervix.js | 52 +++++++++++++++++++++++++++++++++++++++++++ assets/desire.js | 35 +++++++++++++++++++++++++++++ assets/note.js | 41 ++++++++++++++++++++++++++++++++++ assets/pain.js | 25 +++++++++++++++++++++ assets/sex.js | 52 +++++++++++++++++++++++++++++++++++++++++++ assets/temperature.js | 48 +++++++++++++++++++++++++++++++++++++++ 7 files changed, 283 insertions(+) create mode 100644 assets/bleeding.js create mode 100644 assets/cervix.js create mode 100644 assets/desire.js create mode 100644 assets/note.js create mode 100644 assets/pain.js create mode 100644 assets/sex.js create mode 100644 assets/temperature.js diff --git a/assets/bleeding.js b/assets/bleeding.js new file mode 100644 index 0000000..5070a3c --- /dev/null +++ b/assets/bleeding.js @@ -0,0 +1,30 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function BleedingIcon(props) { + return ( + + + + + + + + + + + + + ) +} diff --git a/assets/cervix.js b/assets/cervix.js new file mode 100644 index 0000000..0f07d53 --- /dev/null +++ b/assets/cervix.js @@ -0,0 +1,52 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function CervixIcon(props) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +} diff --git a/assets/desire.js b/assets/desire.js new file mode 100644 index 0000000..b23b710 --- /dev/null +++ b/assets/desire.js @@ -0,0 +1,35 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function DesireIcon(props) { + return ( + + + + + + + + + + + + + ) +} diff --git a/assets/note.js b/assets/note.js new file mode 100644 index 0000000..d1c834c --- /dev/null +++ b/assets/note.js @@ -0,0 +1,41 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function NoteIcon(props) { + return ( + + + + + + + + + + + + + ) +} diff --git a/assets/pain.js b/assets/pain.js new file mode 100644 index 0000000..01603a8 --- /dev/null +++ b/assets/pain.js @@ -0,0 +1,25 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function PainIcon(props) { + return ( + + + + + + + + ) +} diff --git a/assets/sex.js b/assets/sex.js new file mode 100644 index 0000000..8550704 --- /dev/null +++ b/assets/sex.js @@ -0,0 +1,52 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function SexIcon(props) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +} diff --git a/assets/temperature.js b/assets/temperature.js new file mode 100644 index 0000000..d24039c --- /dev/null +++ b/assets/temperature.js @@ -0,0 +1,48 @@ +import React from 'react' +import { G, Path } from 'react-native-svg' + +export default function TemperatureIcon(props) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +}