flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
25 lines (24 loc) • 660 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
subtitle?: Snippet;
scheduleName?: string;
scheduleClass?: string;
h2Class?: string;
bodyOuterClass?: string;
bodyInnerClass?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:subtitle: any;
* @props:scheduleName: any;
* @props:scheduleClass: any;
* @props:h2Class: any;
* @props:bodyOuterClass: any;
* @props:bodyInnerClass: any;
*/
declare const Schedule: import("svelte").Component<Props, {}, "">;
type Schedule = ReturnType<typeof Schedule>;
export default Schedule;