48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { useId } from 'react'
|
|
import clsx from 'clsx'
|
|
|
|
const formClasses =
|
|
'block w-full appearance-none rounded-lg border border-gray-200 bg-white py-[calc(--spacing(2)-1px)] px-[calc(--spacing(3)-1px)] text-gray-900 placeholder:text-gray-400 focus:border-cyan-500 focus:outline-hidden focus:ring-cyan-500 sm:text-sm'
|
|
|
|
function Label({ id, children }: { id: string; children: React.ReactNode }) {
|
|
return (
|
|
<label
|
|
htmlFor={id}
|
|
className="mb-2 block text-sm font-semibold text-gray-900"
|
|
>
|
|
{children}
|
|
</label>
|
|
)
|
|
}
|
|
|
|
export function TextField({
|
|
label,
|
|
type = 'text',
|
|
className,
|
|
...props
|
|
}: Omit<React.ComponentPropsWithoutRef<'input'>, 'id'> & { label?: string }) {
|
|
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
|
|
}: Omit<React.ComponentPropsWithoutRef<'select'>, 'id'> & { label?: string }) {
|
|
let id = useId()
|
|
|
|
return (
|
|
<div className={className}>
|
|
{label && <Label id={id}>{label}</Label>}
|
|
<select id={id} {...props} className={clsx(formClasses, 'pr-8')} />
|
|
</div>
|
|
)
|
|
}
|