Spaces:
Running
Running
export default function Input() { | |
return ( | |
<div> | |
<div className="relative mt-2 rounded-md shadow-sm"> | |
<div className="absolute inset-y-0 left-0 flex items-center"> | |
<label htmlFor="country" className="sr-only"> | |
Country | |
</label> | |
<select | |
id="country" | |
name="country" | |
autoComplete="country" | |
className="h-full rounded-md border-0 bg-transparent py-0 pl-3 pr-7 text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm" | |
> | |
<option>Model</option> | |
<option>Dataset</option> | |
<option>Space</option> | |
</select> | |
</div> | |
<input | |
type="text" | |
name="phone-number" | |
id="phone-number" | |
className="block w-full rounded-md border-0 py-1.5 pl-24 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" | |
placeholder="meta-llama/Llama-2-7b" | |
/> | |
</div> | |
</div> | |
) | |
} | |