@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
15 lines (14 loc) • 629 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type DropdownContainerProperties<ET extends ElementType = 'div'> = {
/** Tag of the component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* Container that styles the dropdown menu.
* @docs {@link https://design.visa.com/components/dropdown-menu/?code_library=react | See Docs}
*/
declare const DropdownContainer: {
<ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: DropdownContainerProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default DropdownContainer;