From 1f8d5d86eb508202ad1443ce1555be9ece4795ea Mon Sep 17 00:00:00 2001 From: LTakhyunKim Date: Mon, 2 Dec 2024 13:33:56 +0900 Subject: [PATCH] fix: delete unused } of textfield padding style --- .../src/components/TextField/TextField.style.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/design-system/src/components/TextField/TextField.style.ts b/packages/design-system/src/components/TextField/TextField.style.ts index 7cd05635..b0f4c1f4 100644 --- a/packages/design-system/src/components/TextField/TextField.style.ts +++ b/packages/design-system/src/components/TextField/TextField.style.ts @@ -30,15 +30,15 @@ const getSinglelineTextFieldPaddingByIconAndSize = ({ case "small": return `4px ${hasRightIcon ? "8px" : "12px"} 4px ${ hasLeftIcon ? "8px" : "12px" - }}`; + }`; case "medium": return `8px ${hasRightIcon ? "12px" : "16px"} 8px ${ hasLeftIcon ? "12px" : "16px" - }}`; + }`; case "large": return `10px ${hasRightIcon ? "12px" : "16px"} 10px ${ hasLeftIcon ? "12px" : "16px" - }}`; + }`; } };