Skip to content

Instantly share code, notes, and snippets.

@mvbattan
Created April 7, 2017 15:56
Show Gist options
  • Save mvbattan/a3d4bad704fc938f5954ec3da4956f34 to your computer and use it in GitHub Desktop.
Save mvbattan/a3d4bad704fc938f5954ec3da4956f34 to your computer and use it in GitHub Desktop.
createPoint
export const createPoint = (coordinates, color, size = 8) => {
return {
backgroundColor: color,
left: coordinates.x - 3,
bottom: coordinates.y - 2,
position: 'absolute',
borderRadius: 50,
width: size,
height: size
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment