import styled from 'styled-components' // lib import palette from 'lib/styles/palette' const Item = ({ text }: Props) => { return ( {text} ); } const Container = styled.div` height: 100%; flex-basis: 100%; display: flex; align-items: center; justify-content: center; & > span { color: ${palette.gray4}; } `; interface Props { text: string; } export default Item;