I am working on a project and I need a sample code of dropdown menu using tailwind CSS and React.Ts. If anyone could help me I would greatly appreciate it.
This is my code, it needs to look like the image, without the calendar.
export default function Filter() {
return (
Sort By
<select
id="sortBy"
className="block appearance-none w-full bg-white border border-gray-300 text-gray-700 py-2 px-4 pr-8 rounded leading-tight focus:outline-none focus:bg-white focus:border-gray-500">
<option value="name">Name</option>
<option value="size">Size</option>
</select>
</div>
);
}
New contributor
Southern Breeze is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.