Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <template lang="pug"> svg.b-countdown(viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg") title Expiry: {{ tooltip }} circle(ref='circle' r=128 cx=256 cy=256 stroke-width="256" fill="none" stroke-dasharray="804" stroke-dashoffset="0" :stroke="color" transform="rotate(-90 256 256)") </template> <script> export { default } from "./BaseExpiryIcon.vue.js"; </script> <style> svg.b-countdown { filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .3)); width: 1em; height: 1em; } </style> |