@loadsmart/miranda-wc
Version:
Miranda Web Components component library
34 lines (33 loc) • 839 B
TypeScript
import type { PropertyValues } from 'lit';
import { Component } from '../component';
export interface AvatarProps {
name: string;
size?: string;
}
export declare class Avatar extends Component {
#private;
static styles: import("lit").CSSResult[];
static get properties(): {
name: {
type: StringConstructor;
reflect: boolean;
};
size: {
type: StringConstructor;
reflect: boolean;
};
};
/**
* Controlled value of the selected step.
*/
name: AvatarProps['name'];
size: AvatarProps['size'];
static define(): void;
updated(changedProperties: PropertyValues): void;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'm-avatar': Avatar;
}
}