FileChip.vue 365 B

123456789101112131415161718
  1. <template>
  2. <span class="chip">
  3. <i class="opacity-75 material-icons">attachment</i>
  4. <span class="px-2 truncate max-w-32"><slot></slot></span>
  5. </span>
  6. </template>
  7. <style scoped lang="scss">
  8. .chip {
  9. @apply inline-flex;
  10. @apply items-center;
  11. @apply justify-center;
  12. @apply rounded;
  13. @apply pl-2;
  14. @apply pr-0.5;
  15. @apply bg-primaryDark;
  16. }
  17. </style>