Add faux order details section

This commit is contained in:
fragosti
2018-10-04 17:22:36 -07:00
parent 0cfe5637c0
commit d9b7aa2e4b
3 changed files with 15 additions and 40 deletions

View File

@@ -20,6 +20,9 @@ export interface ContainerProps {
padding?: string;
boxShadow?: string;
borderRadius?: string;
border?: string;
borderColor?: ColorOption;
borderTop?: string;
className?: string;
backgroundColor?: ColorOption;
}
@@ -45,11 +48,14 @@ export const Container = styled(PlainContainer)`
${props => cssRuleIfExists(props, 'padding')}
${props => cssRuleIfExists(props, 'box-shadow')}
${props => cssRuleIfExists(props, 'border-radius')}
${props => cssRuleIfExists(props, 'border')}
${props => cssRuleIfExists(props, 'border-top')}
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};
border-color: ${props => (props.borderColor ? props.theme[props.borderColor] : 'none')};
`;
Container.defaultProps = {
display: 'inline-block',
display: 'block',
};
Container.displayName = 'Container';