avatar.d.ts 401 B

123456789101112131415
  1. import { LitElement } from 'lit';
  2. export default class SlAvatar extends LitElement {
  3. static styles: import("lit").CSSResult;
  4. private hasError;
  5. image: string;
  6. alt: string;
  7. initials: string;
  8. shape: 'circle' | 'square' | 'rounded';
  9. render(): import("lit-html").TemplateResult<1>;
  10. }
  11. declare global {
  12. interface HTMLElementTagNameMap {
  13. 'sl-avatar': SlAvatar;
  14. }
  15. }