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) • 689 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
value?: number;
small?: boolean;
circle?: boolean;
dot?: boolean;
class?: string | undefined;
placement?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
value: {};
};
};
export type BadgeProps = typeof __propDef.props;
export type BadgeEvents = typeof __propDef.events;
export type BadgeSlots = typeof __propDef.slots;
export default class Badge extends SvelteComponentTyped<BadgeProps, BadgeEvents, BadgeSlots> {
}
export {};