HomeWorkflowCard.vue 352 B

12345678910111213
  1. <template>
  2. <ui-card
  3. class="w-full flex items-center space-x-2 hover:ring-2 hover:ring-gray-900"
  4. >
  5. <div class="flex-1">
  6. <p class="leading-tight">halo {{ 1 }}</p>
  7. <p class="leading-none text-gray-500">3 days ago</p>
  8. </div>
  9. <ui-button icon>
  10. <v-remixicon name="riPlayLine" />
  11. </ui-button>
  12. </ui-card>
  13. </template>