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.
19 lines (18 loc) • 546 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type SectionDividerProps = typeof __propDef.props;
export type SectionDividerEvents = typeof __propDef.events;
export type SectionDividerSlots = typeof __propDef.slots;
export default class SectionDivider extends SvelteComponentTyped<SectionDividerProps, SectionDividerEvents, SectionDividerSlots> {
}
export {};