UNPKG

box-ui-elements-mlh

Version:
18 lines (17 loc) 693 B
import * as React from 'react'; import { PlainButtonProps } from '../plain-button'; import './Media.scss'; export interface MediaMenuProps extends PlainButtonProps { /** Child elements */ children: Array<React.ReactNode> | React.ReactChild; /** Additional class names for the menu button */ className?: string; /** Additional props for the DropdownMenu */ dropdownProps?: {}; /** is the dropdown menu button disabled */ isDisabled?: boolean; /** Additional props for the Menu */ menuProps?: {}; } declare const MediaMenu: ({ className, children, isDisabled, dropdownProps, menuProps, ...rest }: MediaMenuProps) => JSX.Element; export default MediaMenu;