UNPKG

flowbite-svelte-blocks

Version:
19 lines (18 loc) 545 B
import type { Snippet } from 'svelte'; interface Props { children?: Snippet; h2?: Snippet; h2Class?: string; class?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:h2: any; * @props:h2Class: any = 'mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white'; * @props:class: string; */ declare const ArticleBody: import("svelte").Component<Props, {}, "">; type ArticleBody = ReturnType<typeof ArticleBody>; export default ArticleBody;