import * as React from "react"; import { twMerge } from "tailwind-merge"; export interface SelectProps extends React.SelectHTMLAttributes { options: { value: string | number; label: string }[]; } const Select = React.forwardRef( ({ className, options, ...props }, ref) => { return (
{/* Custom Arrow Icon */}
); } ); Select.displayName = "Select"; export { Select }; export default Select;