This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Allows you to define a static text value and apply the Override to any number of text objects on the canvas | |
// Make sure if writing from a clean file you have this import statement at the top to use an Override, etc | |
import { Data, animate, Override, Animatable } from "framer" | |
// Define the "const" name as you like and modify "Julie to any value you need | |
export const MyName: Override = () => { | |
return { | |
text: "Julie" | |
} |
OlderNewer