Files
notesnook/packages/editor/dist/toolbar/components/dropdown.d.ts
thecodrr 7ae6590350 updates
2022-04-17 07:22:15 +05:00

9 lines
265 B
TypeScript

/// <reference types="react" />
import { MenuItem } from "../../components/menu/types";
declare type DropdownProps = {
selectedItem: string | JSX.Element;
items: MenuItem[];
};
export declare function Dropdown(props: DropdownProps): JSX.Element;
export {};