UNPKG

@clerk/clerk-js

Version:
16 lines (15 loc) 463 B
import type { MenuId } from '@clerk/types'; import type { LocalizationKey } from '../customizables'; type Action = { label: LocalizationKey; isDestructive?: boolean; onClick: () => unknown; isDisabled?: boolean; }; type ThreeDotsMenuProps = { variant?: 'bordered'; actions: Action[]; elementId?: MenuId; }; export declare const ThreeDotsMenu: (props: ThreeDotsMenuProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};