Skip to content

Instantly share code, notes, and snippets.

@koenbok
Created July 4, 2019 11:09
Show Gist options
  • Save koenbok/45ce18b84714759e5f3ea2cdbe539739 to your computer and use it in GitHub Desktop.
Save koenbok/45ce18b84714759e5f3ea2cdbe539739 to your computer and use it in GitHub Desktop.
import * as React from "react"
import { Frame, useCycle } from "framer"
export function Button() {
const [variant, next] = useCycle({ scale: 1 }, { scale: 1.5 })
return (
<Frame
animate={variant}
onTap={() => next()}
width={200}
height={40}
radius={40}
color="#fff"
center
>
Click Me
</Frame>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment