import { cn } from "@/app/lib/cn"; import { ArrowDown2 } from "iconsax-reactjs"; import { FC } from "react"; export type SelectOption = { label: string; value: string; }; type Props = { options?: readonly SelectOption[]; className?: string; placeholder?: string; } & Omit, "placeholder">; const Select: FC = ({ options, className, placeholder, children, ...rest }) => { return (
); }; export default Select;