const StyledSwiperSlideContainer = styled(Swiper)`
& .swiper-slide {
display: flex;
height: auto;
align-items: center;
}
.swiper-wrapper {
display: flex;
align-items: stretch;
}
`;
<StyledSwiperSlideContainer
slidesPerView={1}
spaceBetween={30}
loop={false}
pagination={{
clickable: true,
}}
navigation={true}
className="mySwiper"
>
...슬라이드들
</StyledSwiperSlideContainer>