Created
August 9, 2017 14:56
-
-
Save zivanovicb/81fe236ad64b2aaba7cfb66296b6fd1a to your computer and use it in GitHub Desktop.
ButtonWithIcon
This file contains 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
import styled from "styled-components"; | |
const ButtonWithIcon = styled.button` | |
background-image: url(${props => props.url}); | |
background-size: 14px 14px; | |
background-position: 10px center; | |
background-repeat: no-repeat; | |
background-color: ${props => props.bg || "#47B4FE"}; | |
padding: ${props => props.pTB || "10px"} 16px; | |
padding-left: 32px; | |
border-radius: 5px; | |
color: white; | |
:hover { | |
background-color: ${props => | |
LightenDarkenColor( | |
props.bg || "#474BFE", | |
props.hoverLightenDarken || -20 | |
)}; | |
cursor: pointer; | |
} | |
`; | |
function LightenDarkenColor(col, amt) { | |
var usePound = false; | |
if (col[0] == "#") { | |
col = col.slice(1); | |
usePound = true; | |
} | |
var num = parseInt(col, 16); | |
var r = (num >> 16) + amt; | |
if (r > 255) r = 255; | |
else if (r < 0) r = 0; | |
var b = ((num >> 8) & 0x00ff) + amt; | |
if (b > 255) b = 255; | |
else if (b < 0) b = 0; | |
var g = (num & 0x0000ff) + amt; | |
if (g > 255) g = 255; | |
else if (g < 0) g = 0; | |
return (usePound ? "#" : "") + (g | (b << 8) | (r << 16)).toString(16); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment