mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
import * as React from "react"
|
|
|
|
export function Select({ children, ...props }: React.SelectHTMLAttributes<HTMLSelectElement>) {
|
|
return (
|
|
<select {...props} className="border border-gray-300 p-2 rounded-md focus:outline-none focus:ring focus:ring-blue-500">
|
|
{children}
|
|
</select>
|
|
)
|
|
}
|