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