BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/warcraftcn/skeleton

Warcraft Skeleton

warcraftcn/skeleton
FreeComponent

A Warcraft-themed skeleton/loading placeholder with faction themes (orc, elf, human, undead) and shimmer animation

Live preview

live · rendered by the registry
Rendered by warcraftcn on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://www.warcraftcn.com/r/skeleton.json

Source

components/ui/warcraftcn/skeleton.tsxwww.warcraftcn.com/r/skeleton.json
1import { cva, type VariantProps } from "class-variance-authority";
2import type * as React from "react";
3
4import { cn } from "@/lib/utils";
5
6import "@/components/ui/warcraftcn/styles/warcraft.css";
7
8const skeletonVariants = cva(
9 "fantasy relative overflow-hidden",
10 {
11 variants: {
12 variant: {
13 default: "rounded-md",
14 circular: "rounded-full",
15 },
16 faction: {
17 default: "wc-skeleton",
18 orc: "wc-skeleton-orc",
19 elf: "wc-skeleton-elf",
20 human: "wc-skeleton-human",
21 undead: "wc-skeleton-undead",
22 },
23 },
24 defaultVariants: {
25 variant: "default",
26 faction: "default",
27 },
28 }
29);
30
31function Skeleton({
32 className,
33 variant,
34 faction,
35 ...props
36}: React.ComponentProps<"div"> & VariantProps<typeof skeletonVariants>) {
37 return (
38 <div
39 className={cn(skeletonVariants({ variant, faction }), className)}
40 data-slot="skeleton"
41 {...props}
42 >
43 {/* Faction icon overlay with pulse animation */}
44 <div className="wc-skeleton-icons" aria-hidden="true" />
45 {/* Shimmer effect overlay */}
46 <div className="wc-skeleton-shimmer" aria-hidden="true" />
47 </div>
48 );
49}
50
51export { Skeleton, skeletonVariants };

Files it writes

  • components/ui/warcraftcn/skeleton.tsx
  • components/ui/warcraftcn/styles/warcraft.css

Facts

Registry
warcraftcn
Type
registry:component
Access
Free
Files written
2
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
today

Go to the source

Docs on warcraftcn www.warcraftcn.com TheOrcDev/warcraftcn-ui on GitHub Raw registry item This item as JSON

More from warcraftcn

All 16 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Warcraft AccordionaccordionwarcraftcnComponentsFree1 dep · 7 files
Warcraft AvataravatarwarcraftcnComponentsFreeno deps · 7 files
Warcraft BadgebadgewarcraftcnComponentsFreeno deps · 4 files
Warcraft ButtonbuttonwarcraftcnComponentsFreeno deps · 6 files
Warcraft CardcardwarcraftcnComponentsFreeno deps · 3 files
Warcraft CheckboxcheckboxwarcraftcnComponentsFree1 dep · 12 files
Warcraft CursorcursorwarcraftcnComponentsFreeno deps · 6 files
Warcraft Dropdown Menudropdown-menuwarcraftcnComponentsFree2 deps · 3 files
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex