UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

13 lines (12 loc) 469 B
import React from 'react'; export type ButtonProps = { readonly onClick: () => void; readonly disabled?: boolean; readonly children: React.ReactNode; readonly style?: React.CSSProperties; readonly buttonContainerStyle?: React.CSSProperties; readonly autoFocus?: boolean; readonly title?: string; readonly id?: string; }; export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;