Files
d3942179-b3a8-414d-a80a-0db…/src/components/ui/Separator.tsx
2026-06-23 23:27:33 +00:00

12 lines
247 B
TypeScript

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;