Created
January 8, 2018 14:49
-
-
Save hustKiwi/d1620356c654dbea1bdbb9837acecba6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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