🖥️ wip: Config screen

This commit is contained in:
mbaharip
2024-04-22 21:22:15 +07:00
parent c5434fe9c4
commit 3afe51581b
34 changed files with 1698 additions and 626 deletions
+9 -8
View File
@@ -1,5 +1,6 @@
import * as React from "react";
import { cn } from "~/utils";
import * as React from "react"
import { cn } from "~/utils"
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}
@@ -11,14 +12,14 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
type={type}
className={cn(
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
className,
className
)}
ref={ref}
{...props}
/>
);
},
);
Input.displayName = "Input";
)
}
)
Input.displayName = "Input"
export { Input };
export { Input }