Skip to content

Instantly share code, notes, and snippets.

@GreenFlag31
Last active August 11, 2023 19:53
Show Gist options
  • Save GreenFlag31/9c71d8cdee36d38c2811de3dc0c5e978 to your computer and use it in GitHub Desktop.
Save GreenFlag31/9c71d8cdee36d38c2811de3dc0c5e978 to your computer and use it in GitHub Desktop.
modal options
export interface Options {
animations?: {
modal?: {
enter?: string;
leave?: string;
};
overlay?: {
enter?: string;
leave?: string;
};
};
size?: {
minWidth?: string;
width?: string;
maxWidth?: string;
minHeight?: string;
height?: string;
maxHeight?: string;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment