UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

10 lines (9 loc) 452 B
import React from 'react'; export type RenderInlineAction = (color: string) => React.ReactNode; export type InlineActionProps = { readonly onClick: React.MouseEventHandler<HTMLButtonElement>; readonly disabled?: boolean; readonly renderAction: RenderInlineAction; readonly title?: string; }; export declare const InlineAction: ({ renderAction, onClick, disabled, title, }: InlineActionProps) => import("react/jsx-runtime").JSX.Element;