Update src/components/ui/Separator.tsx

This commit is contained in:
2026-06-02 23:19:29 +00:00
parent a2ffe523cf
commit e4c0e028dc

View File

@@ -1,11 +0,0 @@
import { cls } from "@/lib/utils";
interface SeparatorProps {
className?: string;
}
const Separator = ({ className = "" }: SeparatorProps) => (
<div className={cls("h-px w-full bg-foreground/10", className)} />
);
export default Separator;