function Label(props) {
return jsx({
label: props.children,
containerStyle: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center'
},
style: {
fontWeight: 800,
textAlign: 'center',
backgroundImage:
'linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet)',
borderRadius: 8,
margin: '0 auto',
color: 'white',
textShadow: '-1px 0 black, 0 1px black, 1px 0 black, 0 -1px black',
fontSize: 28,
display: 'inline-block',
padding: '.25rem 1rem'
}
})`<div style={containerStyle}>
<div style={style}>{label}</div>
</div>`;
}