UNPKG

@metroui/ribbon-menu

Version:

Ribbon Menu for React (Vite, TypeScript)

12 lines (11 loc) 319 B
import React, { FC } from "react"; export interface IRibbonDropdownItemProps { className?: string; target?: string; caption?: string; children?: React.ReactNode; onClick?: any; hotkey?: string; } declare const RibbonDropdownItem: FC<IRibbonDropdownItemProps>; export default RibbonDropdownItem;