svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
31 lines (30 loc) • 961 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
point?: string | undefined | undefined;
icon?: string | import("@fortawesome/fontawesome-common-types").IconDefinition | null | undefined;
completed?: boolean | undefined;
classes?: {
root?: string;
label?: string;
line?: string;
point?: string;
/** Apply classes to completed item point and line leading up to item */
completed?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
point: {};
};
};
export type StepProps = typeof __propDef.props;
export type StepEvents = typeof __propDef.events;
export type StepSlots = typeof __propDef.slots;
export default class Step extends SvelteComponentTyped<StepProps, StepEvents, StepSlots> {
}
export {};