Created
April 19, 2017 18:02
-
-
Save colmtuite/847fb3b5dd9e2da0d28e03084b05440c 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
export default class InputGroup extends React.Component { | |
render(){ | |
return ( | |
<div> | |
<Spacing type="padding" position="bottom" size="small"> | |
<InputLabel>Full name</InputLabel> | |
</Spacing> | |
<Input type="text" placeholder="Full name"></Input> | |
<Spacing type="margin" position="top" size="small"> | |
<Text size="small" color="lightGray">A little hint below the input</Text> | |
</Spacing> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment