component seprator

This commit is contained in:
hamid zarghami
2026-07-14 15:36:37 +03:30
parent 9a8858cd38
commit 5d7de5602a
3 changed files with 28 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
import { FC } from "react";
import { cn } from "../lib/cn";
type Props = {
className?: string;
};
const Seprator: FC<Props> = ({ className }) => {
return <div className={cn("bg-secondary", className)}></div>;
};
export default Seprator;