1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-21 20:04:02 +00:00
Files
browser/libs/components/src/avatar/avatar.component.html
2026-02-12 16:09:35 -05:00

25 lines
681 B
HTML

<span [title]="title() || text()">
<svg
xmlns="http://www.w3.org/2000/svg"
pointer-events="none"
[style.backgroundColor]="customBackgroundColor()"
[class]="svgClass()"
attr.viewBox="0 0 {{ svgSize }} {{ svgSize }}"
>
<text
text-anchor="middle"
y="50%"
x="50%"
dy="0.35em"
pointer-events="auto"
[class]="textColor()"
[style.fontWeight]="svgFontWeight"
[style.fontSize.px]="svgFontSize"
[style.lineHeight.px]="16"
font-family='Inter,"Helvetica Neue",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"'
>
{{ displayChars() }}
</text>
</svg>
</span>