svelte-tuicss
Version:
Svelte component library for the Tuicss UI framework.
18 lines (17 loc) • 523 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
withSpace?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type TuiDividerProps = typeof __propDef.props;
export type TuiDividerEvents = typeof __propDef.events;
export type TuiDividerSlots = typeof __propDef.slots;
export default class TuiDivider extends SvelteComponent<TuiDividerProps, TuiDividerEvents, TuiDividerSlots> {
}
export {};