alert

Warning alert

Warning alert

Загрузка превью…

src/alert/c-alert-7.vue

<script setup lang="ts">
import { Alert, AlertDescription, AlertTitle } from "@/components/reui/alert"
</script>

<template>
  <Alert variant="warning">
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      fill="none"
      stroke="currentColor"
      stroke-width="2"
      stroke-linecap="round"
      stroke-linejoin="round"
      aria-hidden="true"
      class="lucide lucide-triangle-alert"
    >
      <path
        d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3"
      />
      <path d="M12 9v4" />
      <path d="M12 17h.01" />
    </svg>
    <AlertTitle>Warning! Something is wrong</AlertTitle>
    <AlertDescription>
      Please check your settings. If the problem persists, contact support.
    </AlertDescription>
  </Alert>
</template>

Установка

npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-alert-7.json

Зависимости реестра

Источник: порт из ReUI (Keenthemes, MIT)