@indaco/svelte-iconoir
Version:
Iconoir SVG icons as Svelte components.
22 lines (21 loc) • 785 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: import("../../../Icon.d.ts").SVGPropsInternal & import("svelte/elements.js").SVGAttributes<SVGSVGElement>;
events: {
click: MouseEvent;
dblclick: MouseEvent;
keydown: KeyboardEvent;
keyup: KeyboardEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ArrowRightIconProps = typeof __propDef.props;
export type ArrowRightIconEvents = typeof __propDef.events;
export type ArrowRightIconSlots = typeof __propDef.slots;
export default class ArrowRightIcon extends SvelteComponentTyped<ArrowRightIconProps, ArrowRightIconEvents, ArrowRightIconSlots> {
}
export {};