flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
17 lines (16 loc) • 555 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
articleClass?: string;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:articleClass: any = 'p-6 bg-white rounded-lg border border-gray-200 shadow-md dark:bg-gray-800 dark:border-gray-700';
* @props:class: string;
*/
declare const ArticleWrapper: import("svelte").Component<Props, {}, "">;
type ArticleWrapper = ReturnType<typeof ArticleWrapper>;
export default ArticleWrapper;