UNPKG

flowbite-svelte-blocks

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