+ {/* 파일 업로드 */}
+
+
+
+
+
+
+
JPG, PNG, GIF, WEBP (최대 10MB)
+ {selectedComponent.imageUrl && (
+
+ 현재: {selectedComponent.imageUrl}
+
+ )}
+
+
+ {/* 맞춤 방식 */}
+
+
+
+
+
+ {/* 레이블 표시 */}
+
+
+ updateComponent(selectedComponent.id, {
+ showLabel: e.target.checked,
+ })
+ }
+ className="h-4 w-4"
+ />
+
+
+
+ {/* 레이블 텍스트 */}
+ {selectedComponent.showLabel !== false && (
+ <>
+
+
+
+ updateComponent(selectedComponent.id, {
+ labelText: e.target.value,
+ })
+ }
+ className="h-8"
+ />
+
+
+ {/* 레이블 위치 (서명란만) */}
+ {selectedComponent.type === "signature" && (
+
+
+
+
+ )}
+ >
+ )}
+
+ {/* 밑줄 표시 (서명란만) */}
+ {selectedComponent.type === "signature" && (
+
+
+ updateComponent(selectedComponent.id, {
+ showUnderline: e.target.checked,
+ })
+ }
+ className="h-4 w-4"
+ />
+
+
+ )}
+
+ {/* 이름 입력 (도장란만) */}
+ {selectedComponent.type === "stamp" && (
+
+
+
+ updateComponent(selectedComponent.id, {
+ personName: e.target.value,
+ })
+ }
+ placeholder="예: 홍길동"
+ className="h-8"
+ />
+
도장 옆에 표시될 이름
+
+ )}
+
+