coursor.js 306 B

1234567891011121314151617
  1. import React from "react";
  2. import AnimatedCursor from "react-animated-cursor"
  3. const Coursor = () => {
  4. return (
  5. <AnimatedCursor
  6. innerSize={8}
  7. outerSize={8}
  8. color='193, 11, 111'
  9. outerAlpha={0.2}
  10. innerScale={0.7}
  11. outerScale={5}
  12. />
  13. );
  14. }
  15. export default Coursor