svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
34 lines (33 loc) • 1 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { IconDefinition } from '@fortawesome/fontawesome-common-types';
declare const __propDef: {
props: {
[x: string]: any;
size?: string | number;
width?: string | number;
height?: string | number;
viewBox?: string;
path?: string | string[];
data?: IconDefinition | string;
title?: string | undefined;
desc?: string | undefined;
titleId?: string | undefined;
descId?: string | undefined;
classes?: {
root?: string;
path?: string | string[];
};
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IconProps = typeof __propDef.props;
export type IconEvents = typeof __propDef.events;
export type IconSlots = typeof __propDef.slots;
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> {
}
export {};