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