@bettaibi/react-blocknote
Version:
A modern, versatile rich text editor component for React applications with an elegant UI and Notion-like functionality. Supports both React 18 and React 19.
9 lines (8 loc) • 340 B
TypeScript
import { ButtonHTMLAttributes } from "react";
interface Props extends ButtonHTMLAttributes<HTMLButtonElement> {
className?: string;
iconSize?: number;
children?: React.ReactNode;
}
export declare function RedoButton({ className, children, iconSize, ...props }: Props): import("react/jsx-runtime").JSX.Element | null;
export {};