icon.vue 545 B

123456789101112131415161718192021
  1. <template>
  2. <div class="flex">
  3. <kk-button type="primary" :icon="Edit" />
  4. <kk-button type="primary" :icon="Share" />
  5. <kk-button type="primary" :icon="Delete" />
  6. <kk-button type="primary" :icon="Search">Search</kk-button>
  7. <kk-button type="primary">
  8. Upload<el-icon class="el-icon--right"><Upload /></el-icon>
  9. </kk-button>
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import { KkButton } from 'kankan-components'
  14. import {
  15. Delete,
  16. Edit,
  17. Search,
  18. Share,
  19. Upload,
  20. } from '@kankan-components/icons-vue'
  21. </script>