FramerPlugin

Component

A component that integrates with Framer to provide plugin functionality.

Usage

<FramerPlugin name="My Plugin" autoResize={true} showOnMounted={false} uiOptions={{ position: 'bottom left', width: 300, height: 100 }}>
  <div>Plugin Content</div>
</FramerPlugin>

Props

autoResize?

Whether the plugin should auto resize.

type

boolean

default value

false

name?

The name of the plugin.

type

string

showOnMounted?

Whether the plugin should show on mounted.

type

boolean

default value

true

uiOptions?

The options of the UI interface.

type

Omit<UIOptions, 'title'>

default value

{ position: 'top right', width: 240, height: 95 }