Skip to content

Commit

Permalink
fix: delete unused } of textfield padding style
Browse files Browse the repository at this point in the history
  • Loading branch information
LTakhyunKim committed Dec 2, 2024
1 parent 292373a commit 1f8d5d8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}}`;
}`;
}
};

Expand Down

0 comments on commit 1f8d5d8

Please sign in to comment.