This component no longer exists. It was in Originui Vue’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
extended-38
originui-vue/extended-38RemovedComponent
Originui Vue publishes no description for this item.
Install it
npx shadcn@latest add https://originui-vue.com/r/extended-38.jsonSource
1<script setup lang="ts">2import { Button } from "@/registry/default/ui/button";3import { Card, CardContent, CardTitle } from "@/registry/default/ui/card";4import { LucideActivity, LucideArrowUpRight } from "lucide-vue-next";5</script>67<template>8 <Card class="grid gap-2 rounded-xl bg-neutral-50 p-1.5 dark:bg-white/3">9 <div class="flex items-center justify-between p-2 pb-1.5">10 <div class="flex items-center gap-2.5">11 <span class="bg-background flex size-8 items-center justify-center rounded-md border">12 <LucideActivity class="size-4" />13 </span>14 <CardTitle class="text-sm font-normal">Activity</CardTitle>15 </div>16 <Button variant="outline" class="h-8 font-normal whitespace-nowrap">17 <span>Requests</span>18 <LucideArrowUpRight />19 </Button>20 </div>2122 <Card class="rounded-lg py-4 shadow-md shadow-black/5">23 <CardContent class="h-full w-full px-4">24 <div class="flex items-start justify-between gap-4 pb-6">25 <div class="flex flex-col gap-2">26 <div class="text-muted-foreground font-mono text-xs/none uppercase">Requests</div>27 <div class="text-foreground text-base/none font-medium">0</div>28 </div>29 <div class="ml-auto flex items-center gap-4">30 <button type="button" class="flex shrink-0 flex-col items-end gap-1 whitespace-nowrap">31 <div32 class="text-muted-foreground flex items-center gap-2 font-mono text-xs/none whitespace-nowrap uppercase [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-neutral-600 dark:[&>svg]:text-neutral-400"33 >34 <div class="bg-destructive h-2 w-1 shrink-0 rounded-[2px]"></div>35 Failed36 </div>37 <div class="font-medium">0</div>38 </button>39 <button type="button" class="flex shrink-0 flex-col items-end gap-1 whitespace-nowrap">40 <div41 class="text-muted-foreground flex items-center gap-2 font-mono text-xs/none whitespace-nowrap uppercase [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-neutral-600 dark:[&>svg]:text-neutral-400"42 >43 <div class="bg-primary h-2 w-1 shrink-0 rounded-[2px]"></div>44 Processed45 </div>46 <div class="font-medium">0</div>47 </button>48 <button type="button" class="flex shrink-0 flex-col items-end gap-1 whitespace-nowrap">49 <div50// … truncated
