flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
18 lines (17 loc) • 661 B
TypeScript
import type { Snippet } from 'svelte';
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLDivElement> {
children: Snippet;
divClass?: string;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:divClass: any = 'w-full p-6 bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md dark:bg-gray-800 dark:border-gray-700 sm:p-8';
* @props:class: string;
*/
declare const ForgotPassword: import("svelte").Component<Props, {}, "">;
type ForgotPassword = ReturnType<typeof ForgotPassword>;
export default ForgotPassword;