You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
230 B
9 lines
230 B
import styled from 'styled-components'
|
|
|
|
export const PlaceholderLine = styled.div`
|
|
background-color: ${p => (p.dark ? '#C2C2C2' : '#D6D6D6')};
|
|
width: ${p => p.width}px;
|
|
height: 10px;
|
|
border-radius: 5px;
|
|
margin: 5px 0;
|
|
`
|
|
|