From 78e1739d47815bab3b88d31f398e68597a9a2417 Mon Sep 17 00:00:00 2001 From: meriadec Date: Mon, 2 Jul 2018 17:19:51 +0200 Subject: [PATCH] Update/add some icons --- src/icons/GenuineCheck.js | 32 ++++++++++++++++++++++++++++++++ src/icons/Home.js | 28 ++++++++++++++++++++++------ src/icons/Usb.js | 17 ++++++++++++----- 3 files changed, 66 insertions(+), 11 deletions(-) create mode 100644 src/icons/GenuineCheck.js diff --git a/src/icons/GenuineCheck.js b/src/icons/GenuineCheck.js new file mode 100644 index 00000000..791c0ff4 --- /dev/null +++ b/src/icons/GenuineCheck.js @@ -0,0 +1,32 @@ +// @flow + +import React, { Fragment } from 'react' + +const path = ( + + + + +) + +export default ({ size, ...p }: { size: number }) => ( + + {path} + +) diff --git a/src/icons/Home.js b/src/icons/Home.js index 14ab4f05..cc38981f 100644 --- a/src/icons/Home.js +++ b/src/icons/Home.js @@ -1,16 +1,32 @@ // @flow -import React from 'react' +import React, { Fragment } from 'react' const path = ( - + + + + ) export default ({ size, ...p }: { size: number }) => ( - + {path} ) diff --git a/src/icons/Usb.js b/src/icons/Usb.js index 728431ad..45be58c8 100644 --- a/src/icons/Usb.js +++ b/src/icons/Usb.js @@ -4,15 +4,22 @@ import React from 'react' const group = ( - - - - + + ) export default ({ size, ...p }: { size: number }) => ( - + {group} )