import { ListBoxItem } from 'react-aria-components' import { Typography } from '../Typography' import styles from './select.module.css' import { MaterialIcon } from '../Icons/MaterialIcon' import { SelectItemProps } from './types' export function SelectItem({ children, icon, isDisabled, ...props }: SelectItemProps) { const iconColor = isDisabled ? 'Icon/Interactive/Disabled' : 'Icon/Default' return ( {({ isSelected }) => ( <> {icon ? ( ) }