import { forwardRef } from "react"; import type { SelectOptionViewProps } from "./SelectOption.types"; export const SelectOptionView = forwardRef< HTMLDivElement, SelectOptionViewProps >( ( { children, selected, disabled, itemClasses, handleClick, handleKeyDown, ...props }, ref, ) => { return (