@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
18 lines (17 loc) • 591 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { List } from "../list/list.js";
import "../list/index.js";
import { MenuListProps } from "./menu.types.js";
//#region src/menu/menuList.d.ts
/** Displays a list of menu items in a popover content element. */
declare const MenuList: VuiComponent<'ul', MenuListProps> & {
Divider: typeof List.Divider;
Heading: typeof List.Heading;
Icon: typeof List.Icon;
Item: typeof List.Item;
Text: typeof List.Text;
};
//#endregion
export { MenuList, MenuList as default };
//# sourceMappingURL=menuList.d.ts.map