Highly ambitious ATProtocol AppView service and sdks
1interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
2 // You can add custom props here if needed
3}
4
5export function Select({ className, ...props }: SelectProps) {
6 return (
7 <select
8 className={`px-3 py-2 bg-zinc-900 border border-zinc-800 rounded text-sm text-zinc-300 focus:outline-none focus:border-zinc-700 disabled:opacity-50 disabled:cursor-not-allowed ${className || ''}`}
9 {...props}
10 />
11 );
12}