Last active
February 28, 2019 08:47
-
-
Save vadimkorr/f1b3e76058d6053b0d5e7e92769ec5cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { makeNotification } from "./makeNotification"; | |
| // 'SuccessNotification' component is used for rendering success notifications | |
| export const SuccessNotification = makeNotification( | |
| "check-circle", // icon name | |
| "#dff0d8", // primary color | |
| "#3c763d" // accent color | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment