UNPKG

@sorens/artist-svelte

Version:

an opinionated and clean UI framework for SvelteKit with theme support built-in

35 lines (34 loc) 1.09 kB
import { SvelteComponentTyped } from "svelte"; import type { useAction } from '../../types/global'; import type { ColorProp, RtlProp } from '../../types/components/props'; declare const __propDef: { props: { color?: ColorProp; bordered?: boolean; indicator?: boolean; text?: false | string; image?: string | undefined; alt?: string | undefined; useAction?: useAction<HTMLElement>; rtl?: RtlProp; class?: string | undefined; }; events: { change: Event; click: MouseEvent; dblclick: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; mouseover: MouseEvent; focus: FocusEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type AvatarProps = typeof __propDef.props; export declare type AvatarEvents = typeof __propDef.events; export declare type AvatarSlots = typeof __propDef.slots; export default class Avatar extends SvelteComponentTyped<AvatarProps, AvatarEvents, AvatarSlots> { } export {};