UNPKG

@clayui/drop-down

Version:

ClayDropDown component

12 lines (11 loc) 332 B
/** * SPDX-FileCopyrightText: © 2025 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: BSD-3-Clause */ declare type FocusMenuProps<T> = { children: T; condition: boolean; onRender: () => void; }; export declare function FocusMenu<T>({ children, condition, onRender, }: FocusMenuProps<T>): T; export {};