Skip to content

Instantly share code, notes, and snippets.

@benjamindenboer
Created June 3, 2022 13:15
Show Gist options
  • Save benjamindenboer/b8a1b8b7e2c3251e7f79f6e84dc85620 to your computer and use it in GitHub Desktop.
Save benjamindenboer/b8a1b8b7e2c3251e7f79f6e84dc85620 to your computer and use it in GitHub Desktop.
import type { ComponentType } from "react"
export function Rotate(Component): ComponentType {
return (props) => {
return (
<Component
{...props}
animate={{ rotate: 360 }}
transition={{ duration: 10, ease: "linear", repeat: Infinity }}
/>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment