initial implementation

This commit is contained in:
2025-01-26 01:22:33 +00:00
parent 8b4c9ea6ee
commit 672917ac92
14 changed files with 538 additions and 212 deletions

21
app/components/button.tsx Normal file
View File

@@ -0,0 +1,21 @@
import clsx from "clsx"
function Button({
className,
...props
}: React.DetailedHTMLProps<
React.ButtonHTMLAttributes<HTMLButtonElement>,
HTMLButtonElement
>) {
return (
<button
{...props}
className={clsx(
"text-sm bg-neutral-200 dark:bg-neutral-700 px-2 py-1 rounded",
className,
)}
/>
)
}
export { Button }