2018-06-08 15:35:31 -04:00

14 lines
335 B
JavaScript

import styled from 'styled-components'
import { theme } from '../theme'
const StyledCard = styled.div`
width: ${({ width }) => width || '282px'};
height: ${({ height }) => height || '322px'};
background: ${theme.contentBackground};
border: 1px solid ${theme.contentBorder};
border-radius: 3px;
`
export default StyledCard