Many inputs added

This commit is contained in:
2025-07-20 23:33:21 -04:00
parent f84f0a0ebc
commit cb8c2c23be
13 changed files with 335 additions and 16 deletions

View File

@@ -0,0 +1,27 @@
import type { OptionInputProps } from "$/types/Input";
import { ListboxOption } from "@headlessui/react";
import clsx from "clsx";
export default function OptionInput(props: OptionInputProps){
const {
id,
className,
value,
children
} = props;
return (
<ListboxOption
id={id}
className={clsx(
"cursor-pointer",
className
)}
value={value}
>
{children}
</ListboxOption>
);
}