ToolbarIcon.vue 424 B

12345678910111213141516171819
  1. <template>
  2. <img :src="props.src" alt="" class="toolbarIcon" :class="props.active ? 'active' : ''" />
  3. </template>
  4. <script lang="ts" setup>
  5. const props = defineProps<{ active: boolean; src: string }>();
  6. </script>
  7. <style scoped>
  8. .toolbarIcon {
  9. width: 24px;
  10. height: 24px;
  11. padding: 4px;
  12. cursor: pointer;
  13. margin-right: 20px;
  14. &.active {
  15. background: #f0f2f5;
  16. }
  17. }
  18. </style>