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