UNPKG

flowbite-svelte-blocks

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