Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x 1x 1x 1x 1x | export const BASE_CLASS = 'sui-MoleculeModal'
export const MODAL_SIZES = {
XSMALL: 'xsmall',
SMALL: 'small',
MEDIUM: 'medium',
LARGE: 'large',
FULL: 'full'
}
export const MODAL_ANIMATIONS = {
FADE: 'fade',
SLIDE: 'slide',
BLOOM: 'bloom',
NONE: 'none'
}
export const ANIMATION_ENTER_DELAY = 0
export const ANIMATION_EXIT_DELAY = 200
|