feat(Overlay): add custom-style prop (#4572)
This commit is contained in:
@@ -11,7 +11,7 @@ export type OverlayProps = {
|
||||
zIndex?: number | string;
|
||||
duration: number | string | null;
|
||||
className?: any;
|
||||
customStyle?: any;
|
||||
customStyle?: object;
|
||||
};
|
||||
|
||||
export type OverlayEvents = {
|
||||
@@ -58,7 +58,7 @@ Overlay.props = {
|
||||
show: Boolean,
|
||||
duration: [Number, String],
|
||||
className: null as any,
|
||||
customStyle: null as any,
|
||||
customStyle: Object,
|
||||
zIndex: {
|
||||
type: [Number, String],
|
||||
default: 1
|
||||
|
||||
Reference in New Issue
Block a user