22 lines
754 B
Vue
22 lines
754 B
Vue
<template>
|
|
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Logo Gestor de Tareas">
|
|
<defs>
|
|
<linearGradient id="gt-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#0d6efd" />
|
|
<stop offset="100%" stop-color="#6f42c1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="4" y="4" width="56" height="56" rx="16" fill="url(#gt-gradient)" />
|
|
<text
|
|
x="32"
|
|
y="39"
|
|
text-anchor="middle"
|
|
font-size="20"
|
|
font-weight="700"
|
|
font-family="Segoe UI, Arial, sans-serif"
|
|
fill="#ffffff"
|
|
>
|
|
GT
|
|
</text>
|
|
</svg>
|
|
</template> |