@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
13 lines (12 loc) • 427 B
TypeScript
import { ActionIconSize } from '@lobehub/ui';
import { LexicalEditor } from 'lexical';
import { BLOCK_TYPE } from '../utils';
type Props = {
size?: ActionIconSize;
editor: LexicalEditor;
blockType: BLOCK_TYPE;
value: string;
onChange: (v: string) => void;
};
export default function DropdownLanguages({ size, editor, blockType, value, onChange }: Props): import("react/jsx-runtime").JSX.Element;
export {};