"use client" import type { BaseFieldControlProps, SelectOption } from "../types" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/shared/components/ui/select" export type SelectFieldProps = BaseFieldControlProps & { placeholder?: string options: SelectOption[] } export function SelectField({ value, onChange, onBlur, name, disabled, invalid, placeholder, options, }: SelectFieldProps) { return ( ) }