Skip to content

Instantly share code, notes, and snippets.

@olecksamdr
Created March 6, 2019 09:20
Show Gist options
  • Save olecksamdr/7f7e314cc0ded6c1aaf3d56e5113d59c to your computer and use it in GitHub Desktop.
Save olecksamdr/7f7e314cc0ded6c1aaf3d56e5113d59c to your computer and use it in GitHub Desktop.
ifProp helper for styled-components
export const ifProp = (prop, pass, fail) => props => props[prop] ? pass : fail;
@olecksamdr
Copy link
Author

olecksamdr commented Mar 6, 2019

const Div = styled.div`
    ${ifProp('isSearching', css`
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
    `)};
`;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment