import styled from "@emotion/styled"; const StyledTableRow = styled.tr` height: 3.125rem; white-space: nowrap; &:nth-of-type(even) { background: #f9f9f9; } &:nth-of-type(odd) { background: #f1f1f1; } `; export default StyledTableRow;