UNPKG

flowbite-svelte-blocks

Version:
25 lines (24 loc) 729 B
import type { Snippet } from 'svelte'; interface Props { children: Snippet; aClass?: string; imgClass?: string; src?: string; href?: string; alt?: string; class?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:aClass: any = 'flex items-center mb-6 text-2xl font-semibold text-gray-900 dark:text-white'; * @props:imgClass: any = 'w-8 h-8 mr-2'; * @props:src: any; * @props:href: any; * @props:alt: any; * @props:class: string; */ declare const ForgotPasswordHeader: import("svelte").Component<Props, {}, "">; type ForgotPasswordHeader = ReturnType<typeof ForgotPasswordHeader>; export default ForgotPasswordHeader;