UNPKG

@senka-ai/ui

Version:

A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns

9 lines 435 B
import type { BaseProps, VariantComponent } from '../../type/component'; interface Props extends BaseProps, VariantComponent<'solid' | 'dashed' | 'dotted'> { orientation?: 'horizontal' | 'vertical'; spacing?: 'none' | 'small' | 'medium' | 'large'; } declare const Divider: import("svelte").Component<Props, {}, "">; type Divider = ReturnType<typeof Divider>; export default Divider; //# sourceMappingURL=Divider.svelte.d.ts.map