import React, { forwardRef } from 'react' import { twMerge, twJoin } from '@toptal/picasso-tailwind-merge' type NativeSelectInputProps = { className?: string disabled?: boolean IconComponent?: React.ElementType multiple?: boolean ownerState?: {} } & React.HTMLAttributes export const NativeSelectInput = forwardRef< HTMLSelectElement, NativeSelectInputProps >((props, ref) => { // omit ownerState from the props // eslint-disable-next-line @typescript-eslint/no-unused-vars const { ownerState, className, disabled, multiple, IconComponent, ...other } = props return ( <>