Skip to content

Commit

Permalink
Create Fieldset.js
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanbinekhub authored Jun 9, 2017
1 parent c30b539 commit dc20efb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Fieldset.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ const FieldsetLabel = props => <View><FieldsetLabelText>{ props.children }</Fiel
const FieldsetWrapper = styled.View`
borderBottomColor: ${props => props.theme.Fieldset.borderBottomColor };
borderBottomWidth: ${props => props.last ? 0 : props.theme.Fieldset.borderBottomWidth };
padding: ${props => props.theme.Fieldset.padding };
paddingTop : ${props => props.theme.Fieldset.paddingTop };
paddingRight : ${props => props.theme.Fieldset.paddingRight };
paddingBottom : ${props => props.theme.Fieldset.paddingBottom };
paddingLeft : ${props => props.theme.Fieldset.paddingLeft };
`

FieldsetWrapper.defaultProps = {
Expand Down

0 comments on commit dc20efb

Please sign in to comment.