UNPKG

flowbite-svelte-blocks

Version:
25 lines (24 loc) 687 B
import type { Snippet } from 'svelte'; interface Props { children?: Snippet; h3?: Snippet; caption?: Snippet; class?: string; blockQuoteClass?: string; h3Class?: string; footerBlockQuoteClass?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:h3: any; * @props:caption: any; * @props:class: string; * @props:blockQuoteClass: any; * @props:h3Class: any; * @props:footerBlockQuoteClass: any; */ declare const TestimonialCardItem: import("svelte").Component<Props, {}, "">; type TestimonialCardItem = ReturnType<typeof TestimonialCardItem>; export default TestimonialCardItem;