Created
January 12, 2020 20:57
-
-
Save aibolik/30ed54bed42c73e642d33b3dd3438ef0 to your computer and use it in GitHub Desktop.
Toast component(part of post - https://aibolik.github.io/blog/creating-toast-api-with-react-hooks)
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
| const Wrapper = styled.div` | |
| margin-right: 16px; | |
| margin-top: 16px; | |
| width: 200px; | |
| position: relative; | |
| padding: 16px; | |
| border: 1px solid #d7d7d7; | |
| border-radius: 3px; | |
| background: white; | |
| box-shadow: 0px 4px 10px 0px #d7d7d7; | |
| color: #494e5c; | |
| `; | |
| const Toast = ({ children }) => ( | |
| <Wrapper>{children}</Wrapper> | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment