"use client" import { Category } from "@/prisma/client" import { SelectProps } from "@radix-ui/react-select" import { useMemo } from "react" import { FormSelect } from "./simple" export const FormSelectCategory = ({ title, categories, emptyValue, placeholder, hideIfEmpty = false, isRequired = false, ...props }: { title: string categories: Category[] emptyValue?: string placeholder?: string hideIfEmpty?: boolean isRequired?: boolean } & SelectProps) => { const items = useMemo( () => categories.map((category) => ({ code: category.code, name: category.name, color: category.color })), [categories] ) return ( ) }