Skip to content

Instantly share code, notes, and snippets.

@BrianLitwin
Created February 28, 2019 19:18
Show Gist options
  • Save BrianLitwin/2ee27e20bef16e67c39b15482dd96b33 to your computer and use it in GitHub Desktop.
Save BrianLitwin/2ee27e20bef16e67c39b15482dd96b33 to your computer and use it in GitHub Desktop.
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