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.
41 lines (40 loc) • 1.28 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { ComponentProps } from 'svelte';
import Avatar from './Avatar.svelte';
declare const __propDef: {
props: {
[x: string]: any;
title?: string | number | null | undefined;
subheading?: string | number | null | undefined;
icon?: string | null | undefined;
avatar?: (boolean | ComponentProps<Avatar> | null) | undefined;
list?: "type" | "parent" | "group" | undefined;
noShadow?: boolean | undefined;
noBackground?: boolean | undefined;
classes?: {
root?: string;
avatar?: string;
icon?: string;
title?: string;
subheading?: string;
} | undefined;
loading?: boolean | null | undefined;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
avatar: {};
title: {};
subheading: {};
actions: {};
};
};
export type ListItemProps = typeof __propDef.props;
export type ListItemEvents = typeof __propDef.events;
export type ListItemSlots = typeof __propDef.slots;
export default class ListItem extends SvelteComponentTyped<ListItemProps, ListItemEvents, ListItemSlots> {
}
export {};