diff --git a/components/Button/index.tsx b/components/Button/index.tsx index d59b469e..4aa99985 100644 --- a/components/Button/index.tsx +++ b/components/Button/index.tsx @@ -39,7 +39,6 @@ export default function Button({ } function ButtonTitle({ title, bold }: ButtonTitleProps) { - return ( -

{title}

- ); + const className = bold ? "font-ibold" : "font-iregular"; + return
{title}
; }