UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

25 lines (24 loc) 695 B
import { SvelteComponentTyped } from "svelte"; import type { HTMLAreaAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLAreaAttributes & { href?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type NavBrandProps = typeof __propDef.props; export type NavBrandEvents = typeof __propDef.events; export type NavBrandSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let href: $$Props['href'] = ''; */ export default class NavBrand extends SvelteComponentTyped<NavBrandProps, NavBrandEvents, NavBrandSlots> { } export {};