From 56d403810dae27adfa5e7a72f6fc7ed19f95ce82 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Thu, 3 Sep 2020 21:34:27 -0700 Subject: [PATCH] feat: shadow feather icon set to append additional needed icons --- .../gatsby-theme-newrelic/icons/feather.js | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/@newrelic/gatsby-theme-newrelic/icons/feather.js diff --git a/src/@newrelic/gatsby-theme-newrelic/icons/feather.js b/src/@newrelic/gatsby-theme-newrelic/icons/feather.js new file mode 100644 index 000000000..0f3a0a42e --- /dev/null +++ b/src/@newrelic/gatsby-theme-newrelic/icons/feather.js @@ -0,0 +1,24 @@ +import React from 'react'; +import defaultIcons from '@newrelic/gatsby-theme-newrelic/src/icons/feather'; + +export default { + ...defaultIcons, + code: ( + <> + + + + ), + eye: ( + <> + + + + ), + 'message-square': ( + + ), + twitter: ( + + ), +};