flowbite-svelte
Version:
Flowbite components for Svelte
23 lines (22 loc) • 736 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string;
divClass?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type TestimonialPlaceholderProps = typeof __propDef.props;
export type TestimonialPlaceholderEvents = typeof __propDef.events;
export type TestimonialPlaceholderSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let divClass: $$Props['divClass'] = 'animate-pulse';
*/
export default class TestimonialPlaceholder extends SvelteComponentTyped<TestimonialPlaceholderProps, TestimonialPlaceholderEvents, TestimonialPlaceholderSlots> {
}
export {};