import clsx from 'clsx'; import { SelectHTMLAttributes } from 'react'; import { AutomationTestingProps } from '@/types'; export interface Option extends Partial { value: T; label: string; disabled?: boolean; } interface Props extends AutomationTestingProps { options: Array> | ReadonlyArray>; } export function Select({ options, className, 'data-cy': dataCy, id, ...props }: Props & SelectHTMLAttributes) { return ( ); }