alert

Alert with icon

Alert with icon

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

src/alert/c-alert-2.vue

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

<template>
  <Alert>
    <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-circle-check"
    >
      <circle cx="12" cy="12" r="10" />
      <path d="m9 12 2 2 4-4" />
    </svg>
    <AlertTitle>Alert!</AlertTitle>
    <AlertDescription>
      This is an alert with icon, title and description.
    </AlertDescription>
  </Alert>
</template>

Установка

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

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

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