18 lines
614 B
XML
18 lines
614 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 30" fill="none">
|
||
|
|
<defs>
|
||
|
|
<style>
|
||
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
|
||
|
|
.text-pulse {
|
||
|
|
animation: text-pulse 3s ease-in-out infinite;
|
||
|
|
}
|
||
|
|
@keyframes text-pulse {
|
||
|
|
0%, 100% { opacity: 1; }
|
||
|
|
50% { opacity: 0.7; }
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<!-- Text: TypeDialog with pulse animation -->
|
||
|
|
<text class="text-pulse" x="70" y="24" font-family="Inter, sans-serif" font-size="20" font-weight="500" fill="#8f96a3" text-anchor="middle">TypeDialog</text>
|
||
|
|
</svg>
|