flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
21 lines (20 loc) • 617 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
author?: Snippet;
authorDiv?: string;
authorImgDiv?: string;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:author: any;
* @props:authorDiv: any = 'flex justify-between items-center';
* @props:authorImgDiv: any = 'flex items-center space-x-4';
* @props:class: string;
*/
declare const ArticleAuthor: import("svelte").Component<Props, {}, "">;
type ArticleAuthor = ReturnType<typeof ArticleAuthor>;
export default ArticleAuthor;