flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
22 lines (21 loc) • 566 B
TypeScript
import type { Component } from 'svelte';
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
footer?: Snippet;
Icon?: Component;
class?: string;
figureFooterClass?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:footer: any;
* @props:Icon: any;
* @props:class: string;
* @props:figureFooterClass: any;
*/
declare const Testimonial: Component<Props, {}, "">;
type Testimonial = ReturnType<typeof Testimonial>;
export default Testimonial;