import styled from 'styled-components/macro' export const Wrapper = styled.div` width: 100%; margin: auto; overflow: hidden; ` export const List = styled.ul` display: flex; gap: 20px; width: 100%; height: 100%; ` export const ListItem = styled.li` flex-shrink: 0; height: 100%; ` export const ButtonsWrapper = styled.div` display: flex; justify-content: center; align-items: center; `