flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
17 lines (16 loc) • 415 B
TypeScript
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;