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.
25 lines (24 loc) • 782 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
value?: number | null | undefined;
rotate?: number | undefined;
size?: number | undefined;
width?: number | undefined;
track?: boolean | undefined;
class?: string | undefined | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type ProgressCircleProps = typeof __propDef.props;
export type ProgressCircleEvents = typeof __propDef.events;
export type ProgressCircleSlots = typeof __propDef.slots;
export default class ProgressCircle extends SvelteComponentTyped<ProgressCircleProps, ProgressCircleEvents, ProgressCircleSlots> {
}
export {};