From 9751727b5d075769425c365fdfca461edc395b90 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Sat, 27 Feb 2021 11:02:23 +0900 Subject: [PATCH] chore: transition duration decrease --- components/Button.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Button.tsx b/components/Button.tsx index 419402f..1eb31f8 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -2,12 +2,12 @@ import Link from 'next/link' const Button = ({ type='button', className, children, href, onClick }: ButtonProps):JSX.Element => { return href ? - + { children } - : onClick ? : : }