From f3d64eebf7b25f2e4e8233d4629bac68e2884bfe Mon Sep 17 00:00:00 2001 From: "jiwon93.son" Date: Fri, 29 Mar 2024 17:14:06 +0900 Subject: [PATCH] =?UTF-8?q?[TItemCard]=20props=20className=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- com.twin.app.shoptime/src/components/TItemCard/TItemCard.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/com.twin.app.shoptime/src/components/TItemCard/TItemCard.jsx b/com.twin.app.shoptime/src/components/TItemCard/TItemCard.jsx index 18d82d40..2579587b 100644 --- a/com.twin.app.shoptime/src/components/TItemCard/TItemCard.jsx +++ b/com.twin.app.shoptime/src/components/TItemCard/TItemCard.jsx @@ -35,6 +35,7 @@ export const removeDotAndColon = (string) => { export default memo(function TItemCard({ children, + className, disabled, imageAlt, imageSource, @@ -92,7 +93,8 @@ export default memo(function TItemCard({ className={classNames( css[type], nonPosition && css.nonPosition, - type === "videoShow" && css[imgType] + type === "videoShow" && css[imgType], + className && className )} onBlur={_onBlur} onClick={_onClick}