UNPKG

webcoreui

Version:

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

11 lines (9 loc) 254 B
import type { AlertProps } from '../Alert/alert' export type ToastProps<T extends object = object> = { position?: 'bottom-left' | 'top-left' | 'top-right' | 'bottom-full' | 'top-full' | null } & AlertProps<T>