BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/blacksite/separator

Separator

blacksite/separator
FreeComponent

Hairline divider with optional dashed/dotted variant.

Install it

npx shadcn@latest add https://blacksite.sh/r/separator.json

Source

registry/blacksite/ui/separator.tsxblacksite.sh/r/separator.json
1"use client";
2
3import * as React from "react";
4import * as SeparatorPrimitive from "@radix-ui/react-separator";
5
6import { cn } from "@/lib/utils";
7
8interface SeparatorProps extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {
9 variant?: "solid" | "dashed" | "dotted";
10}
11
12const Separator = React.memo(
13 React.forwardRef<React.ElementRef<typeof SeparatorPrimitive.Root>, SeparatorProps>(
14 (
15 { className, orientation = "horizontal", decorative = true, variant = "solid", ...props },
16 ref,
17 ) => (
18 <SeparatorPrimitive.Root
19 ref={ref}
20 decorative={decorative}
21 orientation={orientation}
22 className={cn(
23 "shrink-0 bg-transparent",
24 orientation === "horizontal" ? "h-px w-full border-t" : "h-full w-px border-l",
25 variant === "solid" && "border-border border-solid",
26 variant === "dashed" && "border-border border-dashed",
27 variant === "dotted" && "border-border border-dotted",
28 className,
29 )}
30 {...props}
31 />
32 ),
33 ),
34);
35Separator.displayName = "Separator";
36
37export { Separator };

Facts

Registry
blacksite
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
First indexed
2026-08-02
Last confirmed
yesterday

Go to the source

blacksite.sh refrakts/blacksite-ui on GitHub Raw registry item This item as JSON

More from blacksite

All 25 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
App headerapp-headerblacksiteComponentsFreeno deps
BadgebadgeblacksiteComponentsFreeno deps
Bar chartbar-chartblacksiteComponentsFreeno deps
ButtonbuttonblacksiteComponentsFreeno deps
CardcardblacksiteComponentsFreeno deps
Chart tooltipchart-tooltipblacksiteComponentsFreeno deps
Data listdata-listblacksiteComponentsFreeno deps
Gantt timelinegantt-timelineblacksiteComponentsFreeno deps
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