Some cleaning

This commit is contained in:
2025-04-03 15:18:41 +02:00
parent b7e43ef351
commit 525e70c8bc
9 changed files with 145 additions and 285 deletions

View File

@@ -1,6 +1,6 @@
import * as React from "react"
import * as React from "react";
import { cn } from "~/lib/utils"
import { cn } from "~/lib/utils";
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
@@ -15,7 +15,7 @@ function Input({ className, type, ...props }: React.ComponentProps<"input">) {
)}
{...props}
/>
)
);
}
export { Input }
export { Input };