Created
February 28, 2019 19:18
-
-
Save BrianLitwin/2ee27e20bef16e67c39b15482dd96b33 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
function IssueLabel(bgc, txt) { | |
const style = { | |
marginLeft: "6px", | |
height: "20px", | |
padding: "0.15em 6px", | |
fontSize: "14px", | |
fontweight: "600", | |
lineHeight: "15px", | |
borderRadius: "2px", | |
boxShadow: "inset 0 -1px 0 rgba(27,31,35,0.12)", | |
backgroundColor: `#${bgc}` | |
} | |
return(<label style={style}>{txt}</label>) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment