import * as React from 'react'; import { getRTL } from '@fluentui/react/lib/Utilities'; import { FocusZone, FocusZoneDirection } from '@fluentui/react/lib/FocusZone'; import { TextField } from '@fluentui/react/lib/TextField'; import { Image, ImageFit } from '@fluentui/react/lib/Image'; import { Icon } from '@fluentui/react/lib/Icon'; import { List } from '@fluentui/react/lib/List'; import { ITheme, mergeStyleSets, getTheme, getFocusStyle } from '@fluentui/react/lib/Styling'; import { createListItems, IExampleItem } from '@fluentui/example-data'; import { useConst } from '@fluentui/react-hooks'; const theme: ITheme = getTheme(); const { palette, semanticColors, fonts } = theme; const classNames = mergeStyleSets({ itemCell: [ getFocusStyle(theme, { inset: -1 }), { minHeight: 54, padding: 10, boxSizing: 'border-box', borderBottom: `1px solid ${semanticColors.bodyDivider}`, display: 'flex', selectors: { '&:hover': { background: palette.neutralLight }, }, }, ], itemImage: { flexShrink: 0, }, itemContent: { marginLeft: 10, overflow: 'hidden', flexGrow: 1, }, itemName: [ fonts.xLarge, { whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis', }, ], itemIndex: { fontSize: fonts.small.fontSize, color: palette.neutralTertiary, marginBottom: 10, }, chevron: { alignSelf: 'center', marginLeft: 10, color: palette.neutralTertiary, fontSize: fonts.large.fontSize, flexShrink: 0, }, }); const onRenderCell = (item: IExampleItem, index: number | undefined): JSX.Element => { return (