Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created July 12, 2019 12:13
Show Gist options
  • Save indreklasn/f4f44c89748520e8c086c3cbf6116dc8 to your computer and use it in GitHub Desktop.
Save indreklasn/f4f44c89748520e8c086c3cbf6116dc8 to your computer and use it in GitHub Desktop.
import React from "react";
import { motion } from "framer-motion";
const styles = {
background: "blue",
borderRadius: 30,
width: 150,
height: 150,
margin: "auto"
};
export const Rotate = () => (
<motion.div
style={styles}
animate={{ rotate: 360 }}
transition={{ duration: 2 }}
/>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment