Packed.ui
← Components

Separator

Packed Separator — warm, token-driven UI on sand surfaces.

Flights

TP1234 to Lisbon

Hotels

Bairro Alto, 3 nights

bunx shadcn@latest add https://ui.trypacked.dev/r/separator.json

components/ui/separator.tsx

"use client";

import { Separator as SeparatorPrimitive } from "@base-ui/react/separator";

import { cn } from "@/registry/lib/utils";

function Separator({
  className,
  orientation = "horizontal",
  ...props
}: SeparatorPrimitive.Props) {
  return (
    <SeparatorPrimitive
      data-slot="separator"
      orientation={orientation}
      className={cn(
        "shrink-0 bg-border-subtle data-horizontal:h-px data-horizontal:w-full data-vertical:h-full data-vertical:w-px data-vertical:self-stretch",
        className,
      )}
      {...props}
    />
  );
}

export { Separator };

@base-ui/react

  • @packed/utils
  • registry/ui/separator.tsx → components/ui/separator.tsx