mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-01-10 02:46:24 +00:00
14 lines
335 B
JavaScript
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
|