Skip to content

Instantly share code, notes, and snippets.

@Damkols
Created June 13, 2022 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Damkols/3a026e39d45929f8ff4a3a9f79373af3 to your computer and use it in GitHub Desktop.
Save Damkols/3a026e39d45929f8ff4a3a9f79373af3 to your computer and use it in GitHub Desktop.
const StyledButton = styled.button`
border: 2px solid green;
background-color: ${(props) => (props.variant !== "outline" ? "white" : "green")};
color: ${(props) => (props.variant === "outline" ? "green" : "white")};
padding: 15px 32px;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
// hover styles
&:hover {
background-color: ${(props) => (props.variant !== "outline" ? "white" : "green")};
color: ${(props) => (props.variant !== "outline" ? "green" : "white")};
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment