import styled from 'styled-components'; interface TileProps { color: string; } export const Tile = styled.div` width: 32px; height: 32px; background-color: ${(props) => props.color}; `;