안드로이드 이이콘 변경

This commit is contained in:
Macbook
2026-06-15 17:58:55 +09:00
parent ba00841834
commit 8b45362a00
5 changed files with 55 additions and 10 deletions
+4 -1
View File
@@ -24,6 +24,8 @@ export interface AppPopupProps {
overlayClassName?: string;
bodyClassName?: string;
centered?: boolean;
/** 콘텐츠 크기 변화·창 리사이즈 시 (드래그 전까지) 중앙 재정렬 */
recenterOnResize?: boolean;
zIndex?: number;
closeOnBackdrop?: boolean;
backdrop?: boolean;
@@ -48,6 +50,7 @@ export const AppPopup: React.FC<AppPopupProps> = ({
overlayClassName,
bodyClassName = 'app-popup-body',
centered = true,
recenterOnResize = false,
zIndex = 9999,
closeOnBackdrop = true,
backdrop = false,
@@ -68,7 +71,7 @@ export const AppPopup: React.FC<AppPopupProps> = ({
headerTouchStyle,
panelStyle,
headerCursor,
} = useDraggablePanel({ centerOnMount: centered, initialPosition });
} = useDraggablePanel({ centerOnMount: centered, recenterOnResize, initialPosition });
const overlayCls = [
'app-popup-overlay',