diff --git a/src/components/button.tsx b/src/components/button.tsx
index 0ff5e0b..5ac7832 100644
--- a/src/components/button.tsx
+++ b/src/components/button.tsx
@@ -1,7 +1,7 @@
'use client';
import Link from 'next/link';
import { useRouter } from 'next/navigation'
-import { ComponentPropsWithoutRef, Ref, forwardRef } from 'react';
+import { ComponentPropsWithoutRef, JSX, Ref, forwardRef } from 'react';
const styles = {
commonDesign: "border-b text-black px-4 py-2 leading-none m-2",
linkDisabled: "opacity-50 cursor-not-allowed leading-none",
@@ -48,7 +48,7 @@ export const Button = forwardRef
>((props, ref) => {
const { disabled, ...linkAttributes } = props as unknown as CustomLinkProps;
return (
<>
-
+
>
);
}) as (p: Props) => JSX.Element;
\ No newline at end of file