webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
17 lines (13 loc) • 318 B
text/typescript
import type { Snippet } from 'svelte'
export type PopoverProps = {
id?: string
className?: string
[key: string]: any
}
export type SveltePopoverProps = {
children: Snippet
} & PopoverProps
export type ReactPopoverProps = {
isInteractive?: boolean
children?: React.ReactNode
} & PopoverProps