mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
Expounded on select.tsx to make it fully functional
This commit is contained in:
parent
f0598ed85e
commit
6e1e9368a6
@ -7,3 +7,24 @@ export function Select({ children, ...props }: React.SelectHTMLAttributes<HTMLSe
|
|||||||
</select>
|
</select>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function SelectTrigger({ children, ...props }: React.ButtonHTMLAttributes<HTMLButtonElement>) {
|
||||||
|
return (
|
||||||
|
<button {...props} className="border border-gray-300 p-2 rounded-md focus:outline-none focus:ring focus:ring-blue-500">
|
||||||
|
{children}
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SelectContent({ children }: { children: React.ReactNode }) {
|
||||||
|
return <div className="absolute bg-white shadow-md rounded-md p-2">{children}</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SelectItem({ children, ...props }: React.OptionHTMLAttributes<HTMLOptionElement>) {
|
||||||
|
return <option {...props}>{children}</option>
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SelectValue({ children }: { children: React.ReactNode }) {
|
||||||
|
return <span>{children}</span>
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user