From afad17c5b60100600b339d7da064ed95d9c48730 Mon Sep 17 00:00:00 2001 From: mickasmt Date: Wed, 26 Jun 2024 13:07:01 +0200 Subject: [PATCH] fix: update input font on mobile --- components/ui/input.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/components/ui/input.tsx b/components/ui/input.tsx index ece03ae3..19610298 100644 --- a/components/ui/input.tsx +++ b/components/ui/input.tsx @@ -1,6 +1,6 @@ -import * as React from "react" +import * as React from "react"; -import { cn } from "@/lib/utils" +import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} @@ -11,15 +11,15 @@ const Input = React.forwardRef( - ) - } -) -Input.displayName = "Input" + ); + }, +); +Input.displayName = "Input"; -export { Input } +export { Input };