UNPKG

flowbite-svelte-blocks

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