import styled from '@emotion/styled'; export const StyledBoard = styled.div` border-top: 1px solid ${({ theme }) => theme.border.color.light}; display: flex; flex: 1; flex-direction: row; margin-left: ${({ theme }) => theme.spacing(2)}; margin-right: ${({ theme }) => theme.spacing(2)}; `;