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} )