webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
18 lines (14 loc) • 348 B
text/typescript
import type { Snippet } from 'svelte'
export type SpoilerProps = {
color?: string
animated?: boolean
block?: boolean
tooltip?: string
tooltipPosition?: 'bottom' | null
}
export type SvelteSpoilerProps = {
children: Snippet
} & SpoilerProps
export type ReactSpoilerProps = {
children: React.ReactNode
} & SpoilerProps