import React from 'react'; import { classNames } from '~/utils/classNames'; interface SelectOption { value: string; label: string; } interface SelectProps { options: SelectOption[]; value: string; onChange: (value: string) => void; className?: string; placeholder?: string; } export const Select: React.FC = ({ options, value, onChange, className, placeholder }) => { return ( ); };