const Image = styled.img<ICardItemStyleProps>`
min-width: 120%;
min-height: 120%;
transform: scale(90%);
animation: ${props => props.isSelected ? `${bubbling} 2s linear infinite` : null};
`;
animation을 isSelected가 true일때만 적용할거거든
근데 리액트는 keyframes를 변수에 넣어서 쓰다보니까 저렇게 탬플릿리터럴에 넣어서 사용이 안됨
어떻게 하는게 효과적이야?
댓글 0