SignInDialogHeader.vue 339 B

12345678910111213141516
  1. <template>
  2. <div class="flex items-center gap-2 p-0 text-warn-600 dark:text-warn-500">
  3. <Icon
  4. name="ph:warning-circle-fill"
  5. size="1.375rem"
  6. />
  7. <div class="text-lg font-semibold">
  8. You&rsquo;ll need to sign in before doing that.
  9. </div>
  10. </div>
  11. </template>
  12. <script setup></script>
  13. <style scoped></style>