import styled from "@emotion/styled"; const StyledMenuItem = styled.li` cursor: pointer; padding: 0.75rem 1.5rem; display: flex; justify-content: flex-start; align-items: center; grid-gap: 0.5rem; &:hover { background-color: rgba(0, 0, 0, 0.05); } `; export default StyledMenuItem;