UNPKG

flowbite-svelte-blocks

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