UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

22 lines 800 B
import React from 'react'; import { DropdownOption } from '../../internal/components/option/interfaces'; import { HighlightType } from '../../internal/components/options-list/utils/use-highlight-option.js'; export interface ItemProps { option: DropdownOption; highlighted?: boolean; selected?: boolean; filteringValue?: string; hasCheckbox?: boolean; virtualPosition?: number; padBottom?: boolean; isNextSelected?: boolean; isPreviousSelected?: boolean; screenReaderContent?: string; ariaPosinset?: number; ariaSetsize?: number; highlightType?: HighlightType['type']; withScrollbar?: boolean; sticky?: boolean; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<ItemProps & React.RefAttributes<HTMLDivElement>>>; export default _default;