Last active
July 13, 2018 00:43
-
-
Save wwwhatley/0764e192428e8a94c43dbf984d0b9562 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from 'styled-components'; | |
export const Input = styled.input` | |
width: 300px; | |
height: 35px; | |
border: ${props => props.border || '1px solid #ccc'}; | |
background-color: #fff; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment