flowbite-svelte
Version:
Flowbite components for Svelte
14 lines (13 loc) • 434 B
TypeScript
import type { ActivityProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ActivityProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1757)
* ## Props
* @prop children
* @prop class: className
* @prop ...restProps
*/
declare const Activity: import("svelte").Component<ActivityProps, {}, "">;
type Activity = ReturnType<typeof Activity>;
export default Activity;