Skip to content

Instantly share code, notes, and snippets.

View benjamindenboer's full-sized avatar

Benjamin den Boer benjamindenboer

View GitHub Profile
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 }}
/>
render() {
return (
<div style={{ ...style, background: this.props.fill }}>
{this.props.text}
</div>
);
}
static propertyControls: PropertyControls = {
text: { type: ControlType.String, title: "Text" },
fill: { type: ControlType.Color, title: "Fill" }
};
static defaultProps = {
text: "Get Started",
fill: "#09F"
};
static propertyControls: PropertyControls = {
text: { type: ControlType.String, title: "Text" },
fill: { type: ControlType.Color, title: "Fill" }
};
interface Props {
text: string;
fill: string;
}
import * as React from "react"; ​
export class Example extends React.Component {
render() {
return <div style={{color: "blue"}}>Hello World!</div>
}
}
import * as React from "react"; ​
export class Example extends React.Component {
render() {
return <div style={{color: "blue"}}>Hello World!</div>
}
}
static propertyControls: PropertyControls = {
text: {
type: ControlType.String,
title: "Text"
}
};
64 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-instagram.png
46 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-facebook.png
36 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-groupon.png
77 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/stripe-badge.png
64 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-google.png
66 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-soundcloud.png
54 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-stripe.png
77 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-slack.png
60 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-twitter.png
64 /Users/ben/Documents/Design/Framer - Live/FramerSite/sprites/sprite2x/logo-dropbox.png