UNPKG

@spaceone/design-system

Version:
16 lines (14 loc) 313 B
export enum sizeMapping { sm = 'modal-sm', md = '', lg = 'modal-lg', xl = 'modal-xl', } export type ModalSizeType = keyof typeof sizeMapping; export interface ModalProps { fade: boolean; scrollable: boolean; size: ModalSizeType; visible: boolean; // sync backdrop: boolean; }