Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Created January 8, 2018 14:49
Show Gist options
  • Save hustKiwi/d1620356c654dbea1bdbb9837acecba6 to your computer and use it in GitHub Desktop.
Save hustKiwi/d1620356c654dbea1bdbb9837acecba6 to your computer and use it in GitHub Desktop.
// Prop receivers
const borderProps = props => css`
${props.borderBottom && `border-bottom: ${props.borderWidth || "1px"} solid ${color.border}`};
${props.borderTop && `border-top: ${props.borderWidth || "1px"} solid ${color.border}`};
${props.borderLeft && `border-left: ${props.borderWidth || "1px"} solid ${color.border}`};
${props.borderRight && `border-right: ${props.borderWidth || "1px"} solid ${color.border}`};
`;
// Mixins
const size = (width, height = width) => `
width: ${width};
height: ${height};
`;
// Example
const Button = styled.button`
${borderProps};
${size('200px', '50px')};
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment