webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
19 lines (15 loc) • 349 B
text/typescript
import type { Snippet } from 'svelte'
export type BannerProps = {
top?: number
bottom?: boolean
closeable?: boolean
padded?: boolean
sticky?: boolean
className?: string
}
export type SvelteBannerProps = {
children: Snippet
} & BannerProps
export type ReactBannerProps = {
children: React.ReactNode
} & BannerProps