UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

11 lines (10 loc) 655 B
import { IItemRove } from './types/itemRove'; declare const ItemRove: ({ id, children, focus, index, setFocus, onSelectItem, asElement, role, onMouseOver, dataTestId, type, disabled, ariaSelected, ariaControls, ariaLabel, url, disableKeys, ariaDisabled, preventScrollOnFocus, ariaHidden, checkIsFirstTime, }: IItemRove) => JSX.Element; /** * @description * ItemRove component is a component that can be used to select and navigate through a list of items with the keyboard arrows. * It can be used to create a list of options that can be selected. * @param {React.PropsWithChildren<IItemRove>} props * @returns {JSX.Element} */ export { ItemRove };