UNPKG

webcoreui

Version:

UI component and template library for Astro, Svelte, and React apps styled with Sass.

14 lines (13 loc) 322 B
export type ModalProps<T extends object = object> = { title?: string subTitle?: string showCloseIcon?: boolean closeOnEsc?: boolean closeOnOverlay?: boolean transparent?: boolean className?: string theme?: 'info' | 'success' | 'warning' | 'alert' } & T