[TItemCard] props className추가
This commit is contained in:
@@ -35,6 +35,7 @@ export const removeDotAndColon = (string) => {
|
|||||||
|
|
||||||
export default memo(function TItemCard({
|
export default memo(function TItemCard({
|
||||||
children,
|
children,
|
||||||
|
className,
|
||||||
disabled,
|
disabled,
|
||||||
imageAlt,
|
imageAlt,
|
||||||
imageSource,
|
imageSource,
|
||||||
@@ -92,7 +93,8 @@ export default memo(function TItemCard({
|
|||||||
className={classNames(
|
className={classNames(
|
||||||
css[type],
|
css[type],
|
||||||
nonPosition && css.nonPosition,
|
nonPosition && css.nonPosition,
|
||||||
type === "videoShow" && css[imgType]
|
type === "videoShow" && css[imgType],
|
||||||
|
className && className
|
||||||
)}
|
)}
|
||||||
onBlur={_onBlur}
|
onBlur={_onBlur}
|
||||||
onClick={_onClick}
|
onClick={_onClick}
|
||||||
|
|||||||
Reference in New Issue
Block a user