@senka-ai/ui
Version:
A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns
12 lines • 398 B
TypeScript
import type { BaseProps } from '../../type/component';
interface Props extends BaseProps {
title: string;
rightText?: string;
rightIcon?: any;
onRightClick?: () => void;
iconSize?: number;
}
declare const ListTitle: import("svelte").Component<Props, {}, "">;
type ListTitle = ReturnType<typeof ListTitle>;
export default ListTitle;
//# sourceMappingURL=ListTitle.svelte.d.ts.map