Spaces:
Sleeping
Sleeping
| import React from "react"; | |
| import { cn } from "@/lib/utils"; | |
| export function Separator({ className, orientation = "horizontal", ...props }) { | |
| return ( | |
| <div | |
| className={cn( | |
| "shrink-0 bg-slate-200", | |
| orientation === "horizontal" ? "h-px w-full" : "h-full w-px", | |
| className | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |