agnostic-svelte
Version:
AgnosticUI (svelte)
40 lines (39 loc) • 997 B
TypeScript
/** @typedef {typeof __propDef.props} AvatarProps */
/** @typedef {typeof __propDef.events} AvatarEvents */
/** @typedef {typeof __propDef.slots} AvatarSlots */
export default class Avatar extends SvelteComponentTyped<{
isRounded?: boolean;
type?: string;
isTransparent?: boolean;
isSquare?: boolean;
size?: string;
text?: string;
imgUrl?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type AvatarProps = typeof __propDef.props;
export type AvatarEvents = typeof __propDef.events;
export type AvatarSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
isRounded?: boolean;
type?: string;
isTransparent?: boolean;
isSquare?: boolean;
size?: string;
text?: string;
imgUrl?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};