import { Form, Select } from "antd"; import { Controller } from "react-hook-form"; type InputSelectProps = { control: any; name: string; label: string; placeholder: string; options: string[]; }; export const InputSelect = ({ control, name, label, placeholder, options }: InputSelectProps) => ( (