From 944864eae2f7e109e8ced0a19620d29da481c4e8 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(