Files
mehraein-front/app/components/Seprator.tsx
T
hamid zarghami d893dc5b7a middle of header
2026-07-14 15:43:36 +03:30

13 lines
244 B
TypeScript

import { FC } from "react";
import { cn } from "../lib/cn";
type Props = {
className?: string;
};
const Seprator: FC<Props> = ({ className }) => {
return <div className={cn("bg-[#E9EEF2]", className)}></div>;
};
export default Seprator;