UNPKG

@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) 338 B
import { ButtonHTMLAttributes } from "react"; interface Props extends ButtonHTMLAttributes<HTMLButtonElement> { className?: string; iconSize?: number; children?: React.ReactNode; } export declare function H1Button({ className, children, iconSize, ...props }: Props): import("react/jsx-runtime").JSX.Element | null; export {};