12 lines
247 B
TypeScript
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;
|