fix. 머지 충돌 수정

Made-with: Cursor
This commit is contained in:
clkim
2026-02-27 15:46:27 +09:00
parent fd83d3ae94
commit 2779a663d7
17 changed files with 31 additions and 53 deletions

View File

@@ -1,25 +1,13 @@
<script setup lang="ts">
interface props {
<<<<<<< HEAD
type?: 'button' | 'link'
to?: string
target?: '_self' | '_blank'
=======
type?: 'internal' | 'external' | 'action'
href?: string
>>>>>>> feature/20250228_SWV-866
backgroundColor?: string
srOnly?: string
}
const props = withDefaults(defineProps<props>(), {
<<<<<<< HEAD
type: 'button',
to: '',
target: '_self',
=======
type: 'action',
>>>>>>> feature/20250228_SWV-866
backgroundColor: '',
srOnly: '',
})