UNPKG

flowbite-svelte-blocks

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