UNPKG

flowbite-svelte-blocks

Version:
17 lines (16 loc) 415 B
import type { Snippet } from 'svelte'; interface Props { children: Snippet; id?: string; class?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:id: any = 'banner'; * @props:class: string; */ declare const Banner: import("svelte").Component<Props, {}, "">; type Banner = ReturnType<typeof Banner>; export default Banner;