import { ReactNode } from 'react'; import { useTheme } from '@emotion/react'; import { IconCheck } from '@/ui/icon'; import { OverflowingTextWithTooltip } from '@/ui/tooltip/OverflowingTextWithTooltip'; import { StyledMenuItemLabel, StyledMenuItemLeftContent, } from '../internals/components/StyledMenuItemBase'; import { StyledMenuItemSelect } from './MenuItemSelect'; type OwnProps = { avatar: ReactNode; selected: boolean; text: string; className?: string; onClick?: () => void; disabled?: boolean; hovered?: boolean; testId?: string; }; export function MenuItemSelectAvatar({ avatar, text, selected, className, onClick, disabled, hovered, testId, }: OwnProps) { const theme = useTheme(); return ( {avatar} {selected && } ); }