From be32c7e0a6bf8de5b44ea2528910ac47a2d7c3b7 Mon Sep 17 00:00:00 2001 From: andrzej Date: Mon, 24 Jun 2024 18:29:03 +0200 Subject: [PATCH] style input --- src/@/components/ui/input.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@/components/ui/input.tsx b/src/@/components/ui/input.tsx index 677d05f..70d174b 100644 --- a/src/@/components/ui/input.tsx +++ b/src/@/components/ui/input.tsx @@ -3,7 +3,7 @@ import * as React from "react" import { cn } from "@/lib/utils" export interface InputProps - extends React.InputHTMLAttributes {} + extends React.InputHTMLAttributes { } const Input = React.forwardRef( ({ className, type, ...props }, ref) => { @@ -11,7 +11,7 @@ const Input = React.forwardRef(