From 460330eb3b88f267d5e297f3d6d4c767ded808f3 Mon Sep 17 00:00:00 2001 From: Laura Cabrera Date: Mon, 28 Aug 2017 12:29:44 -0700 Subject: [PATCH] feat(notification): Add new notification component to next release --- src/components/Notification/Notification.jsx | 1 + src/index.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Notification/Notification.jsx b/src/components/Notification/Notification.jsx index 9ae4f0b84b..18831aa5d4 100644 --- a/src/components/Notification/Notification.jsx +++ b/src/components/Notification/Notification.jsx @@ -45,6 +45,7 @@ const renderContent = (variant, children) => { /** * A banner that highlights important messages. + * new! v0.21.0 */ const Notification = ({ variant, children, ...rest }) => (
diff --git a/src/index.js b/src/index.js index 1c39d69a44..f6eb9ab265 100644 --- a/src/index.js +++ b/src/index.js @@ -6,7 +6,7 @@ export { default as ExpandCollapse } from './old-components/ExpandCollapse/Expan export { default as Grid } from './old-components/Grid/Grid' export { default as Icon } from './old-components/Icon/Icon' export { default as Link } from './components/Link/Link' -export { default as Notification } from './old-components/Notification/Notification' +export { default as Notification } from './components/Notification/Notification' export { default as SelectorCounter } from './old-components/SelectorCounter/SelectorCounter' export { default as Spinner } from './old-components/Spinner/Spinner' export { default as Steps } from './old-components/StepTracker/Steps/Steps'