Layout
Separator
Separate related content.
Separator
Separate related content.
TokensSemantic
SourceOwned
Install
npx shadcn@latest add http://localhost:3000/r/separator.jsonUsage
"use client"
import { Separator } from "@/components/ui/separator"
export function Example() {
return (
<div className="w-full max-w-xs space-y-3 text-sm">
<div className="flex justify-between">
<span>Tokens</span>
<span className="text-muted-foreground">Semantic</span>
</div>
<Separator />
<div className="flex justify-between">
<span>Source</span>
<span className="text-muted-foreground">Owned</span>
</div>
</div>
)
}API
Separatorfunction Separator(props: SeparatorPrimitive.Props)Source code +
"use client"
import { Separator as SeparatorPrimitive } from "@base-ui/react/separator"
import { cn } from "cn"
function Separator({
className,
orientation = "horizontal",
...props
}: SeparatorPrimitive.Props) {
return (
<SeparatorPrimitive
data-slot="separator"
orientation={orientation}
className={cn(
"shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch",
className
)}
{...props}
/>
)
}
export { Separator }