Skip to content

Instantly share code, notes, and snippets.

@aibolik
Created January 12, 2020 20:57
Show Gist options
  • Select an option

  • Save aibolik/30ed54bed42c73e642d33b3dd3438ef0 to your computer and use it in GitHub Desktop.

Select an option

Save aibolik/30ed54bed42c73e642d33b3dd3438ef0 to your computer and use it in GitHub Desktop.
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