Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import React from "react";
  2. import { motion } from "framer-motion";
  3.  
  4. const styles = {
  5. background: "red",
  6. borderRadius: 30,
  7. width: 50,
  8. height: 50,
  9. margin: "auto"
  10. };
  11.  
  12. export const Pop = () => (
  13. <motion.div
  14. style={styles}
  15. animate={{ scale: 3 }}
  16. transition={{ duration: 0.25 }}
  17. />
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement