import { Project } from "@/prisma/client" import { SelectProps } from "@radix-ui/react-select" import { FormSelect } from "./simple" export const FormSelectProject = ({ title, projects, emptyValue, placeholder, hideIfEmpty = false, ...props }: { title: string projects: Project[] emptyValue?: string placeholder?: string hideIfEmpty?: boolean } & SelectProps) => { return ( ({ code: project.code, name: project.name, color: project.color }))} emptyValue={emptyValue} placeholder={placeholder} hideIfEmpty={hideIfEmpty} {...props} /> ) }