23 lines
768 B
Plaintext
23 lines
768 B
Plaintext
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
viewBox="0 0 512 512" class="avatar" aria-hidden="true">
|
|
<defs>
|
|
<clipPath id="porthole">
|
|
<circle cx="50%" cy="50%" r="50%" />
|
|
</clipPath>
|
|
</defs>
|
|
|
|
<g>
|
|
<rect width="100%" height="100%" rx="50" fill="<%= avatar_background_color(@user) %>" />
|
|
|
|
<text x="50%" y="50%" fill="#FFFFFF"
|
|
text-anchor="middle" dy="0.35em"
|
|
<%=raw 'textLength="85%" lengthAdjust="spacingAndGlyphs"' if @user.initials.size >= 3 %>
|
|
font-family="-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif"
|
|
font-size="230"
|
|
font-weight="800"
|
|
letter-spacing="-5">
|
|
<%= @user.initials %>
|
|
</text>
|
|
</g>
|
|
</svg>
|