feat(divider): add margin-vertical props in Divider

This commit is contained in:
George Lima 2019-01-21 13:28:35 -03:00
parent ef6486fc78
commit 689a8b8e37
1 changed files with 2 additions and 0 deletions

View File

@ -6,4 +6,6 @@ export const Divider = styled.div`
height: 1px;
background-color: ${props => props.color || props.theme.colors.text};
opacity: ${props => props.opacity || 1};
margin-bottom: ${props => props.marginBottom || 0};
margin-top: ${props => props.marginTop || 0};
`;