import * as React from "react" import { cn } from "@/lib/utils" import { ChevronDownIcon } from "lucide-react" type NativeSelectProps = Omit, "size"> & { size?: "sm" | "default" } function NativeSelect({ className, size = "default", ...props }: NativeSelectProps) { return (