flowbite-svelte
Version:
Flowbite components for Svelte
31 lines (30 loc) • 1.01 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { HTMLAnchorAttributes } from 'svelte/elements';
declare const __propDef: {
props: HTMLAnchorAttributes & {
href?: string;
ariaLabel?: string;
aClass?: string;
target?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type FooterIconProps = typeof __propDef.props;
export type FooterIconEvents = typeof __propDef.events;
export type FooterIconSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let href: $$Props['href'] = '';
* @prop export let ariaLabel: $$Props['ariaLabel'] = '';
* @prop export let aClass: $$Props['aClass'] = 'text-gray-500 hover:text-gray-900 dark:hover:text-white';
* @prop export let target: $$Props['target'] = undefined;
*/
export default class FooterIcon extends SvelteComponentTyped<FooterIconProps, FooterIconEvents, FooterIconSlots> {
}
export {};