diff --git a/layers/components/atoms/Button/Image.vue b/layers/components/atoms/Button/Image.vue
index 83b9c9a..da8ea46 100644
--- a/layers/components/atoms/Button/Image.vue
+++ b/layers/components/atoms/Button/Image.vue
@@ -1,8 +1,8 @@
@@ -201,8 +201,9 @@ const handleButtonClick = (button: PageDataResourceGroup) => {
- res_path?: string
+ res_path?: { path: string }
disabled?: boolean
use_game_font: 0 | 1 // 0: 사용하지 않음, 1: 사용함
}
diff --git a/layers/types/components/button.ts b/layers/types/components/button.ts
index caffea6..1523186 100644
--- a/layers/types/components/button.ts
+++ b/layers/types/components/button.ts
@@ -1,7 +1,5 @@
export type ButtonType = 'internal' | 'external' | 'download' | 'action'
-export type ImageButtonType = 'internal' | 'external' | 'action'
-
export type LauncherButtonType = 'default' | 'duplication' | 'single'
export type ButtonSize = 'large' | 'medium' | 'small' | 'extra-small'