Created
March 6, 2019 09:20
-
-
Save olecksamdr/7f7e314cc0ded6c1aaf3d56e5113d59c to your computer and use it in GitHub Desktop.
ifProp helper for styled-components
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
export const ifProp = (prop, pass, fail) => props => props[prop] ? pass : fail; |
Author
olecksamdr
commented
Mar 6, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment