This component no longer exists. It was in ondo-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 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.
separator
ondo-ui/separatorRemovedComponent
Visually or semantically separates content.
Install it
npx shadcn@latest add https://ui.ondo.dou.so/r/separator.jsonSource
1"use client"23import { Separator as SeparatorPrimitive } from "@base-ui/react/separator"45import { cn } from "@/lib/utils"67function Separator({8 className,9 orientation = "horizontal",10 ...props11}: SeparatorPrimitive.Props) {12 return (13 <SeparatorPrimitive14 data-slot="separator"15 orientation={orientation}16 className={cn(17 "shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch",18 className19 )}20 {...props}21 />22 )23}2425export { Separator }
What it pulls in
npm packages
Other registry items
