UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

13 lines (12 loc) 662 B
import { ForwardedRef } from 'react'; import { ButtonProperties } from '../button'; export type DropdownButtonProperties = ButtonProperties; /** * Button used to hide or show the dropdown menu. * @docs {@link https://design.visa.com/react/components/dropdown-menu | See Docs} */ declare const _default: <HTMLElementType = HTMLButtonElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & (import("react").SVGAttributes<HTMLElementType> & ButtonProperties)) => import("react").ReactElement; export default _default;