flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
23 lines (22 loc) • 698 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children?: Snippet;
h2?: Snippet;
divClass?: string;
h2Class?: string;
classH2?: string;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:h2: any;
* @props:divClass: any = 'mx-auto max-w-screen-sm text-center lg:mb-16 mb-8';
* @props:h2Class: any = 'mb-4 text-3xl lg:text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white';
* @props:classH2: any;
* @props:class: string;
*/
declare const BlogHead: import("svelte").Component<Props, {}, "">;
type BlogHead = ReturnType<typeof BlogHead>;
export default BlogHead;