Skip to content

Commit

Permalink
feat(notification): Add new notification component to next release
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcabrera committed Aug 28, 2017
1 parent e368443 commit 460330e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Notification/Notification.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const renderContent = (variant, children) => {

/**
* A banner that highlights important messages.
* <span class="docs--badge green">new!</span> <span class="docs--badge purple">v0.21.0</span>
*/
const Notification = ({ variant, children, ...rest }) => (
<div {...safeRest(rest)} className={styles[variant]}>
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 460330e

Please sign in to comment.