flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
20 lines (19 loc) • 545 B
TypeScript
import type { Snippet } from 'svelte';
import type { HTMLAnchorAttributes } from 'svelte/elements';
interface Props extends HTMLAnchorAttributes {
children: Snippet;
href?: string;
aClass?: string;
iconClass?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:href: any = '/';
* @props:aClass: any;
* @props:iconClass: any;
*/
declare const News: import("svelte").Component<Props, {}, "">;
type News = ReturnType<typeof News>;
export default News;