@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
13 lines (12 loc) • 482 B
TypeScript
import React from 'react';
import { BoxProps } from '../Box';
export interface DropdownMenuProps {
/** The position of the menu */
alignment?: 'left' | 'right' | 'match-width';
/** A transform for potentially correcting the alignment */
transform?: BoxProps['transform'];
}
export declare const DropdownMenu: React.ForwardRefExoticComponent<DropdownMenuProps & {
children?: React.ReactNode;
} & React.RefAttributes<HTMLDivElement>>;
export default DropdownMenu;