@kamrade/svelte-dynamic-button
Version:
A simple button template that supports a flexible set of themes, variants, sizes and shapes. You can find usage examples (MagicButton and SimpleButton components) in the repository.
15 lines (14 loc) • 477 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type OldShowcaseProps = typeof __propDef.props;
export type OldShowcaseEvents = typeof __propDef.events;
export type OldShowcaseSlots = typeof __propDef.slots;
export default class OldShowcase extends SvelteComponent<OldShowcaseProps, OldShowcaseEvents, OldShowcaseSlots> {
}
export {};