From 350d025b31aa8fb0e5af3efcb23c44cd2b772c9e Mon Sep 17 00:00:00 2001 From: Jarrod Flesch Date: Wed, 4 Mar 2020 12:14:33 -0500 Subject: [PATCH] adds calendar svg icon --- .../components/graphics/Calendar/index.js | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/client/components/graphics/Calendar/index.js diff --git a/src/client/components/graphics/Calendar/index.js b/src/client/components/graphics/Calendar/index.js new file mode 100644 index 0000000000..656e7ff863 --- /dev/null +++ b/src/client/components/graphics/Calendar/index.js @@ -0,0 +1,33 @@ +import React from 'react'; + +const Calendar = () => { + return ( + + + + + + + + ); +}; + +export default Calendar;