svelte-reactions
Version:
Easy to use emoji reactions for your app.
17 lines (16 loc) • 549 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
width?: number | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type TriggerIconProps = typeof __propDef.props;
export declare type TriggerIconEvents = typeof __propDef.events;
export declare type TriggerIconSlots = typeof __propDef.slots;
export default class TriggerIcon extends SvelteComponentTyped<TriggerIconProps, TriggerIconEvents, TriggerIconSlots> {
}
export {};