Skip to content

Instantly share code, notes, and snippets.

@colmtuite
Created April 19, 2017 18:02
Show Gist options
  • Save colmtuite/847fb3b5dd9e2da0d28e03084b05440c to your computer and use it in GitHub Desktop.
Save colmtuite/847fb3b5dd9e2da0d28e03084b05440c to your computer and use it in GitHub Desktop.
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