flowbite-svelte
Version:
Flowbite components for Svelte
23 lines (22 loc) • 707 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SVGAttributes } from 'svelte/elements';
declare const __propDef: {
props: SVGAttributes<SVGSVGElement> & {
svgClass?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ArrowKeyUpProps = typeof __propDef.props;
export type ArrowKeyUpEvents = typeof __propDef.events;
export type ArrowKeyUpSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let svgClass: $$Props['svgClass'] = 'w-4 h-4';
*/
export default class ArrowKeyUp extends SvelteComponentTyped<ArrowKeyUpProps, ArrowKeyUpEvents, ArrowKeyUpSlots> {
}
export {};