39 lines
1007 B
JavaScript
39 lines
1007 B
JavaScript
import { useId } from 'react'
|
|
import clsx from 'clsx'
|
|
|
|
const formClasses =
|
|
'block w-full appearance-none rounded-md border border-gray-200 bg-gray-50 px-3 py-2 text-gray-800 placeholder-gray-400 focus:border-blue-500 focus:bg-white focus:outline-none focus:ring-blue-500 sm:text-sm'
|
|
|
|
function Label({ id, children }) {
|
|
return (
|
|
<label
|
|
htmlFor={id}
|
|
className="mb-3 block text-sm font-medium text-gray-700"
|
|
>
|
|
{children}
|
|
</label>
|
|
)
|
|
}
|
|
|
|
export function TextField({ label, type = 'text', className, ...props }) {
|
|
let id = useId()
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label && <Label id={id}>{label}</Label>}
|
|
<input id={id} type={type} {...props} className={formClasses} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function SelectField({ label, className, ...props }) {
|
|
let id = useId()
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label && <Label id={id}>{label}</Label>}
|
|
<select id={id} {...props} className={clsx(formClasses, 'pr-8')} />
|
|
</div>
|
|
)
|
|
}
|