@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
11 lines (10 loc) • 361 B
TypeScript
import type { JSX } from 'react';
type Props = {
className?: string;
placeholderClassName?: string;
placeholder: string;
variant?: 'outlined' | 'filled' | 'borderless';
disabled?: boolean;
};
export default function LexicalContentEditable({ className, placeholder, placeholderClassName, variant, disabled, }: Props): JSX.Element;
export {};