UNPKG

flowbite-svelte-blocks

Version:
33 lines (32 loc) 768 B
import type { Snippet } from 'svelte'; interface Props { children: Snippet; social: Snippet; class?: string; imgClass?: string; h3Class?: string; spanClass?: string; href?: string; src?: string; alt?: string; name?: string; jobTitle?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:social: any; * @props:class: string; * @props:imgClass: any; * @props:h3Class: any; * @props:spanClass: any; * @props:href: any; * @props:src: any; * @props:alt: any; * @props:name: any; * @props:jobTitle: any; */ declare const TeamItem: import("svelte").Component<Props, {}, "">; type TeamItem = ReturnType<typeof TeamItem>; export default TeamItem;