@spaceone/design-system
Version:
SpaceONE Design System
15 lines (14 loc) • 319 B
TypeScript
export declare enum sizeMapping {
sm = "modal-sm",
md = "",
lg = "modal-lg",
xl = "modal-xl"
}
export declare type ModalSizeType = keyof typeof sizeMapping;
export interface ModalProps {
fade: boolean;
scrollable: boolean;
size: ModalSizeType;
visible: boolean;
backdrop: boolean;
}