The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

28 строки
685 B

  1. <template>
  2. <svg
  3. xmlns="http://www.w3.org/2000/svg"
  4. xmlns:xlink="http://www.w3.org/1999/xlink"
  5. :viewBox="`0 0 ${box} ${box}`"
  6. :width="width"
  7. :height="height"
  8. xml:space="preserve"
  9. >
  10. <g>
  11. <path d="M48,0A48,48,0,1,0,96,48,48.0512,48.0512,0,0,0,48,0Zm0,84A36,36,0,1,1,84,48,36.0393,36.0393,0,0,1,48,84Z"/>
  12. <path d="M60,42H36a6,6,0,0,0,0,12H60a6,6,0,0,0,0-12Z"/>
  13. </g>
  14. </svg>
  15. </template>
  16. <script setup lang="ts">
  17. const props = withDefaults(defineProps<{ box?: number; width?: number | string; height?: number | string }>(), {
  18. box: 120,
  19. width: 20,
  20. height: 20,
  21. });
  22. const { box, width, height } = props;
  23. </script>
  24. <style scoped>
  25. </style>