안드로이드 이이콘 변경
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user