import styled from 'styled-components' export const Area = styled.div` background-color: ${props => props.backgroundColor ? props.backgroundColor : null}; &:active{ background-color: ${props => props.activeBackgroundColor ? props.activeBackgroundColor : 'rgba(0,0,0,.1)'}; } `