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

11 lines 460 B
import type { ListItemComponent, IconComponent, InteractiveHandlers } from '../../type/component'; interface Props extends ListItemComponent, IconComponent, InteractiveHandlers { rightControl?: any; showChevron?: boolean; compact?: boolean; iconSize?: number; } declare const ListItem: import("svelte").Component<Props, {}, "">; type ListItem = ReturnType<typeof ListItem>; export default ListItem; //# sourceMappingURL=ListItem.svelte.d.ts.map