Refactor #3832 Refactor #3833 - For OverlayPanel

This commit is contained in:
Bahadır Sofuoğlu 2023-04-07 23:07:42 +03:00
parent 89c797bccd
commit 93e29872e9
4 changed files with 38 additions and 2 deletions

View file

@ -65,6 +65,10 @@ export interface OverlayPanelProps {
* Object literal to define widths per screen size.
*/
breakpoints?: OverlayPanelBreakpoints;
/**
* Icon to display in the message close button.
*/
closeIcon?: string | undefined;
}
/**
@ -75,6 +79,10 @@ export interface OverlayPanelSlots {
* Custom content template.
*/
default(): VNode[];
/**
* Custom close icon template.
*/
closeicon(): VNode[];
}
/**