soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
10 lines (9 loc) • 421 B
TypeScript
/// <reference types="react" />
import './menu.scss';
/**
* The `<Menu>` container, will contain `<MenuItem>` and `<Divider>` components
* @specs https://m3.material.io/components/menus/specs
*/
export declare const Menu: import("react").ForwardRefExoticComponent<{
children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children"> & import("react").RefAttributes<HTMLMenuElement>>;