import styled from 'styled-components'; const Wrapper = styled.div` table { width: 100%; table-layout: fixed; thead { color: ${(props) => props.theme.table.thead.color}; font-size: 0.8125rem; user-select: none; } } `; export default Wrapper;