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: Option[];
}
export function Select({
options,
className,
'data-cy': dataCy,
...props
}: Props & SelectHTMLAttributes) {
return (
);
}