@clayui/drop-down
Version:
ClayDropDown component
19 lines (18 loc) • 606 B
TypeScript
/**
* SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import React from 'react';
export interface IProps extends React.HTMLAttributes<HTMLDivElement> {
/**
* Flag that indicates if item is selected.
*/
active?: boolean;
/**
* Flag that indicates if item is disabled or not.
*/
disabled?: boolean;
innerRef?: React.Ref<any>;
}
declare const Section: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLLIElement>>;
export default Section;