@clayui/drop-down
Version:
ClayDropDown component
19 lines (18 loc) • 557 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
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;