This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 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
agileflow-projectquestorg/separatorRemovedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/separator.jsonSource
1"use client"23import * as React from "react"4import { Separator as SeparatorPrimitive } from "radix-ui"56import { cn } from "@/registry/bases/radix/lib/utils"78function Separator({9 className,10 orientation = "horizontal",11 decorative = true,12 ...props13}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {14 return (15 <SeparatorPrimitive.Root16 data-slot="separator"17 decorative={decorative}18 orientation={orientation}19 className={cn(20 "bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:w-px data-[orientation=vertical]:self-stretch",21 className22 )}23 {...props}24 />25 )26}2728export { Separator }
