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 }: SelectItemProps) { return ( {({ isSelected }) => ( <> {icon ? ( ) }