From 5ff4a2660496394d4d606ac8ed82c2c9ee44a5d2 Mon Sep 17 00:00:00 2001 From: Taylor Jones Date: Tue, 6 Dec 2022 08:28:45 -0600 Subject: [PATCH] fix(notification): update icon size to 20 (#12779) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/react/src/components/Notification/Notification.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react/src/components/Notification/Notification.js b/packages/react/src/components/Notification/Notification.js index 0dd4ae5ae03b..aeaef2176234 100644 --- a/packages/react/src/components/Notification/Notification.js +++ b/packages/react/src/components/Notification/Notification.js @@ -185,7 +185,8 @@ function NotificationIcon({ iconDescription, kind, notificationType }) { } return ( + className={`${prefix}--${notificationType}-notification__icon`} + size={20}> {iconDescription} );