1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/** @format */
import React from 'react';
import styled from 'styled-components';
const Block = styled.div`
width: 300px;
height: 60px;
background-color: #c9d5d9;
border-radius: 10px;
padding: 10px;
position: fixed;
transition: 1s;
top: 20px;
right: -340px;
animation: ${({ secondLine }) => (secondLine ? 'anim 5s' : '')};
@keyframes anim {
0% {
right: -340px;
}
5% {
right: 20px;
}
95% {
right: 20px;
}
100% {
right: -340px;
}
}
`;
const SecondNotifSip = ({ secondLine }) => {
return <Block secondLine={secondLine}></Block>;
};
export default SecondNotifSip;