import styled from '@emotion/styled'; import { themeGet } from '@styled-system/theme-get'; const Menu = styled('ul')` list-style: none; padding: ${themeGet('space.1')}; background-color: ${themeGet('colors.white')}; margin: 0; `; export default Menu;