UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

8 lines (7 loc) 204 B
import { type CSSProperties, type FC } from 'react'; interface StopIconProps { size?: string | number; style?: CSSProperties; } declare const StopIcon: FC<StopIconProps>; export default StopIcon;