Skip to content

Instantly share code, notes, and snippets.

@jeffreymetigy
Created February 6, 2019 16:08
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 jeffreymetigy/d5e864cc95f03c94faa7f658b71932ef to your computer and use it in GitHub Desktop.
Save jeffreymetigy/d5e864cc95f03c94faa7f658b71932ef to your computer and use it in GitHub Desktop.
const circleStyle = {
borderRadius: "50%",
background: "royalblue",
width: 50,
height: 50
}
const borderStyle = {
border: "5px solid orange"
}
function CircleWithBorder() {
return <div css={[circleStyle, borderStyle]} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment